
Recherche avancée
Autres articles (30)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
De près ou de loin...
29 avril 2011, parIls ne le savent pas forcément mais sont indispensables
MediaSPIP est un logiciel open-source, il se base sur d’autres logiciels, et d’autres logiciels lui sont également nécessaires pour fonctionner ... Les personnes ici listées ne savent pas forcément qu’elles ont un rôle important dans le développement, elles ont apporté leur connaissances dans le cadre de la création d’une partie de ces éléments nécessaires ou ont écrit des articles permettant de comprendre certaines choses... il semble indispensable (...)
Sur d’autres sites (1328)
-
How to concatenate multiple videos in a folder using ffmpeg and php [on hold]
6 mai 2015, par Kiran Kumar DashI am having videos in a folder with names vid1001.avi ,vid1002.avi and so on..
How to concatenate all of them into a single video using php and ffmpeg through for loop or something like that
-
How to extract frames from all videos in a folder using ffmpeg
11 mai 2023, par OlivierI'm currently able to extract images from a file using the following line



ffmpeg -i inputfile.avi -r 1 image-%d.jpeg




However, I want to apply this to all the files in a folder, and place it in an output folder.



Suppose I have the current folder holding all videos :



input-videos/



----subfolder1/



------video.avi



----subfolder2/



------video.avi



I want everything in the output folder :



output/



----subfolder1/



------video/



----------*.jpeg



----subfolder2/



------video/



----------*.jpeg



What is the simplest way to go about this using a bash script ? (or something else better)


-
How to extract frames from all videos in a folder using ffmpeg
28 janvier 2015, par OlihoopsI’m currently able to extract images from a file using the following line
ffmpeg -i inputfile.avi -r 1 image-%d.jpeg
However, I want to apply this to all the files in a folder, and place it in an output folder.
Suppose I have the current folder holding all videos :
input-videos/
----subfolder1/
------video.avi
----subfolder2/
------video.avi
I want everything in the output folder :
output/
----subfolder1/
------video/
----------*.jpeg
----subfolder2/
------video/
----------*.jpeg
What is the simplest way to go about this using a bash script ? (or something else better)