
Recherche avancée
Autres articles (72)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (8230)
-
How To Abandon The Probesize Input Buffer For Real Time RTSP Playback
3 juin 2014, par user3051473As far as I know that ffmpeg need to first read probesize input buffer to analysis the codec. And the probesize data will cause realtime RTSP delay. So I’m wandering that :
How can I make av_read_frame() to skip the probesize input buffer which has already delayed ? Thanks very much.
-
Revision 70eb862fd3 : Merge "Use small transform size in non-rd real-time mode"
9 juin 2014, par Yunqing WangChanged Paths :
Modify /vp9/encoder/vp9_encodeframe.c
Merge "Use small transform size in non-rd real-time mode" -
Get FFMPEG KeyFrames Time or time range
25 août 2014, par user1729031I am using following command to get keyframe of desire video
ffmpeg -i testinput.mp4 -vf select='eq(pict_type\,I)',setpts='N/(24*TB)' C:\testTemp\%09d.jpg"
I want to extract key-frame time/time duration/start time-end time to map keyframe with time.
Is there any way to get time information of key-frame in same command ?