
Recherche avancée
Autres articles (98)
-
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Qualité du média après traitement
21 juin 2013, parLe bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)
Sur d’autres sites (5666)
-
ffmpeg convert vp9 video to mp4
6 mai 2017, par SulliI am using this command
ffmpeg -i $youtubeUrl -strict -2 -c copy output.mp4
(with $youtubeUrl generated by youtube-dl) to download this youtube video : https://www.youtube.com/watch?v=wnCJhq-JOck
I can’t play the downloaded video though on Ubuntu or Windows (for a problem of vp09 codec) and I have to convert the video to webm and then back to mp4 to be able to play it :
ffmpeg -i output.mp4 -vcodec libvpx-vp9 -strict experimental output_2.webm
ffmpeg -i output_2.webm -strict 2 output_3.mp4This happens only with some youtube videos, not all of them.
Is there a way to download all youtube videos in a readable format with only one command line, without having to convert to webm ?
-
FFMPEG - speed up/slow down video, add jitter etc
27 septembre 2019, par DarrellI’m trying to put together a Windows script that will process short videos in a folder.
The videos will be shot at a high frame rate 60+ fps and be about 4-5 secs long.Basically I am looking to make various style clips, using fast/slow effects, back and forth etc.
So, the script might process a video, make it start normal speed, then slow motion. Next video might be normal speed, slomo, normal speed slomo. Next video might be forwards,back, forwards back, slomo.See example : (this is a compliation, I’m looking at processing individual videos in a folder.)
http://www.youtube.com/watch?v=K03IBQZu8SQ
I’m guessing there is no way to do this, other than splitting a clip using FFMPEG, processing the bits, then merging back together ? I can’t seem to find a way to do it as one clip.
-
ffmpeg H264 - How to add user unregistered SEI Message while encoding stream
19 avril 2022, par cruxeonI'm working on an application where I need to insert some user unregistered SEI data in every frame before encoding it. I can't seem to find any API to add the SEI data. What I need to do is probably option 1 to the answer of this post ; but I'm not sure on how to proceed.?



I've tried setting "sei" through the AvCodecContext priv_data, using av_opt_set as follows : (as well as changing the parameters quite a bit).



AVCodecContext* c;

char *sei_msg = (char *)malloc(lenData); // just a sample usage of how...
memcpy(sei_msg, data, lenData); // ...i have my sei_message

av_opt_set(c,"sei", sei_msg, 0)




Not sure if this is the correct direction for this ?



How do I set the data that i'm adding is a Nal of type SEI (6) and that the SEI is of type User_Data_Unregistered (5). And then go about adding this data ?