
Recherche avancée
Autres articles (35)
-
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
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 (2841)
-
FFMPEG under Windows 7(64) - creating timelaps video
23 janvier 2016, par Me_no_stupitMy goal is to create a video from a bunch of jpg files. I have chosen FFMPEG (Windows 64) to solve this task :
The task
I have more than 4k jpg files in a directory, all following the naming convention
pic000000X.jpg
(wherex
is a number)
i.e.pic_0000001.jpg
,pic_0000002.jpg
,.,pic_0001337.jpg
and so on which I want to create a timelaps video from.(source : FFMPEG FAQ - Creating timelaps videos)
Result
When I run
ffmpeg -i pic%7d.jpg -s:v 1280x720 -c:v libx264 output.mp4
I get theoutput.mp4
file but it is small and contains only few pictures/frames - nine to be precise (running the reverse commandffmpeg -i output.mp4 test%d.jpg
I gettest1.jpg
totest9.jpg
)Observation
It seems to work until
pic_0000009.jpg
and then the pattern does not recognizepic_00000010.jpg
onwards.What am I missing or am I doing wrong to only include nine pictures ?
Thanks for time and effort for giving me some hints.P.S. I tried the
blob
style file pattern but it does not work under windows -
Extracting vanc data/frame hexdump from a video file
23 novembre 2018, par GreasyjoeIs it possible to extract line 23 data, which allows signaling of the source (coded image) aspect ratio and the Active Format Descriptor, using ffmpeg ?
I believe this might be possible in mediainfo but it doesnt have a binary representation option, just strings.
-
Using FFMPEG : How to do a Scene Change Detection ? with timecode ?
24 novembre 2016, par MozartBased on this article it seems that it is possible to use FFMPEG to detect scene change in videos :
http://www.luckydinosaur.com/u/ffmpeg-scene-change-detectorNow I have a video that displays a book text and when the text (word or sentence) is spoken it gets highlighted.
Something like this audio book : https://youtu.be/lA7L6ZNVKjcI need to know the timestamp when the text gets highlighted (hence scene change), this will allow me to add timestamp tags on my youtube video, so it becomes easier for listeners to navigate through the audiobook.
What is the magic command line that would do this ?
Thank you very much !