
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (57)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (7547)
-
ffmpeg - how can I make a video out of video given a list of frames ?
28 avril 2020, par Adam GosztolaiI have a list of frames
frames = [23, 25, 26, 27, 28, 345, 346, 347]
and a video fileinput.mp4
recorded at 100 fps.


Could someone show me how to make a video
output.mp4
taking only frames fromframes
?

-
h264dec : use a large enough field for reference list modification values
17 août 2017, par Anton Khirnov -
ffmpeg video of image list within a folder
31 mars 2020, par Gergely SzarkaI am trying to create an animation from a png files. They are all in the same folder and are named



step0.png
step1.png
step2.png
.....

step19998.png
step19999.png




I frame represents 0.01s, so I think I need 100 fps.



the command I was trying :



ffmpeg -r 100 -f image2 -pattern_type glob -i '*.png' -vcodec libx264 -crf 1 -pix_fmt yuv420p test.mp4




For some reason it doesnt put them together in the correct order, but when i put the last 500 into another folder and ran the command there it worked perfectly.