
Advanced search
Other articles (62)
-
Publier sur MédiaSpip
13 June 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 -
Soumettre améliorations et plugins supplémentaires
10 April 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...) -
Les formats acceptés
28 January 2010, byLes 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 (...)
On other websites (9629)
-
avfilter/avfilter: Reorder structure fields
10 February 2024, by Andreas Rheinhardt -
Merge commit ’c2e936de07d054bf476e60445b453bf6b4836820’
1 August 2013, by Michael NiedermayerMerge commit ’c2e936de07d054bf476e60445b453bf6b4836820’
* commit ’c2e936de07d054bf476e60445b453bf6b4836820’:
tree-test: Refactor and plug memory leaksConflicts:
libavutil/tree.cMost of this commit is not merged due to bugs in it
Merged-by: Michael Niedermayer <michaelni@gmx.at>
-
ffmpeg frame-accurate cutting
24 September 2018, by jvecseiI’ve been trying for some time to achieve frame-accurate cuts with ffmpeg.
Since I don’t want to do a complete re-encoding, my idea was to do a re-encoding only at the intersections. This works fine, but it seems like the sound will become more and more asynchronous over time (at the end 0.5s).
The command for the intersection point is from the "real" start to the next keyframe:
ffmpeg -ss 468.24 -to 474.680000 -i input.avi -c:a mp3 -c:v h264 -avoid_negative_ts make_zero -pix_fmt yuv420p -r 25 input.avi_0.tmp.start.avi
The command for what comes next is from the keyframe to the next cut:
ffmpeg -ss 479.720000 -t 2039.320000 -i input.avi -c copy -avoid_negative_ts make_zero -pix_fmt yuv420p input.avi_0.tmp.avi
I do this multiple times and fhe file names of the results will be written to concat.txt
Then i merge the files with:
ffmpeg -f concat -fflags +genpts -async 1 -i input.avi_concat.txt -c copy -pix_fmt yuv420p -y input.cut.avi
Does anyone have any idea what else I can try? I tried async/vsync but unfortunately without any great result. Before executing the concat command the files are all fine...