
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (31)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (4452)
-
in ffmpeg how to refer to double digit numbers in file names ? [closed]
12 mai 2023, par santokuI have a list of images named img_05.png, img_10.png and so on, when i tried to use this command
ffmpeg -i image_%09d.png test-merged.mp4
it shows 'no such file or directory', but if the files are named img_0.png, img_1.png and so on, runningffmpeg -i image_%d.png test-merged.mp4
would work. I tried either 09d% or 02d%, neither works. what should i put to indicate a double-digit non-continuous integer ? thanks

-
avformat/mpegtsenc : refact, remove h264, hevc magic numbers for nal_type
30 janvier 2024, par Nuo Mi -
can ffmpeg use actual frame number in stream instead of sequentially added image numbers
26 mars 2024, par Wangffmpeg -i test.mp4 -vf select="eq(pict_type\,I)" %d.png



above code create file name incremental by 1, like :


1.png
2.png
3.png
...



but I want the actual frame number in the source stream :


1.png
26.png
51.png
...



there is very old thread asking the same thing. But I wonder is there a solution right now ?