
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (109)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (...)
Sur d’autres sites (14639)
-
How to use ffmpeg to extract frames from video and read as a list of images in python in memory without writing files
11 octobre 2020, par yiyAt my application server, I have a stream of Webm chunks coming from browsers that users record live videos. I want to analyze each frame simultaneously. So I used python to create a generator yielding the Webm file binaries to feed into ffmpeg. I use the command
python convert.py | ffmpeg -i pipe: -r 1 output%3d.jpg
to create a set of frames files. (The convert.py is just the generator to yield binary webm data for ffmpeg).

My question is that how can I make the ffmpeg output to a new pipe that in python I can read as a list of images directly ?


-
FFMPEG Combine a list of jpg with mo3 audios to sepatated videos on batch [closed]
20 septembre 2020, par Francisco Barrodi have a big list of jpg and mp3 files. each of them have identical names but they not enumerated. example cat.jpg and cat.mp3 pig.jpg and pig.jpg i want to make videos cat.mp4 pig.mp4


i have a code to do this manually but i want to make it on batch. heres my code


ffmpeg -loop 1 -i cat.jpg -i cat.mp3 -threads 8 -shortest -c:v libx264 -c:a copy cat.mp4 



its simple but works for my need.


need help to make it on batch-


thanks in advance.


-
ffmpeg list video devices with batch script to variables
5 août 2020, par ubulI use the
ffmpeg -stats -hide_banner -list_devices true -f dshow -i dummy
command to list all video and audio devices, and I need to get all Alternative name From "DirectShow video devices" (just video devices) with batch script.

I'm start with this : ffmpeg output parse in batch script (first answer)


Can someone more experienced to help me with this task ? Thanks in advance !