
Recherche avancée
Autres articles (43)
-
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 -
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 (...)
Sur d’autres sites (5099)
-
how to use a video stream as input in python/opencv programme
11 juillet 2016, par vasu guptaI am able to stream and receive webcam feed in two terminal via udp
command for streaming :
ffmpeg -i /dev/video0 -b 50k -r 20 -s 858x500 -f mpegts udp://127.0.0.1:2000
command for recieving :
ffplay udp://127.0.0.1:2000
Now i have to use this received video stream as input in python/opencv how can i do that.
I will be doing this using rtp and rstp as well.
But in case of rtsp it is essential to initiate the receiving terminal, but if I do that then port will become busy and my program will not be able to take the feed.How could it be resolved.
I am currently using opencv 2.4.13, python 2.7 in ubuntu 14.04 -
Controlling ffmpeg at runtime [closed]
4 août 2023, par EkoBasic Command :


ffmpeg -i F:\Downloads\big_buck_bunny_720p_20mb.mp4 -filter_complex "zmq=bind_address=tcp\\\://127.0.0.1\\\:1236,hue=h=1:s=1" -vcodec libx264 -f mpegts - | ffplay -

zmqsend "Parsed_hue_1 h 90"



I got zmqsend from ffmpeg-tools.zip and added to my ffmpeg bin directory


execute above ffplay command from terminal window #1 - and see video playing


Open terminal window #2 and execute :
zmqsend "Parsed_hue_1 h 90"


result : no change to video yaw. No errors either


What am I doing wrong or something I missed ?


-
How to use python-ffmpeg to stream to platforms like youtube, twtich ? [closed]
16 mars 2023, par wraientI have been using ffmpeg from terminal to stream to twitch for a project. But I have to move it to python I found this python-ffmpeg module but could not find any good documentation. How do I convert this terminal ffmpeg command into python-ffmpeg command ?


"ffmpeg -re -i ./anime/aots8e1.mkv -c:v libx264 -preset veryfast -b:v 6000k -maxrate 6000k -bufsize 6000k -pix_fmt yuv420p -g 50 -c:a aac -b:a 160k -ac 2 -ar 44100 -f flv rtmp://live-ber.twitch.tv/app/"+streamkey



If there are other better alternative to use ffmpeg and python together, please recommend.