
Recherche avancée
Médias (1)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
Autres articles (102)
-
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 (...)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (13715)
-
Java ffmpeg progress bar
7 juin 2012, par user1440140Even I am working for making a progress bar for ffmpeg in java... So for that I want to read all the progress....
String[] command = {"gnome-terminal", "-x", "/bin/sh", "-c","ffmpeg -i /home/tmp/F.webm /home/tmp/converted1.mp4"};
And then just execute this by :
Process process = Runtime.getRuntime().exec(command);
This runs perfectly... BUt I want to read all this progress to make a progress bar... SO how can I read this from that terminal...
-
ffmpeg no re-encode upload finishes too early
15 octobre 2022, par Amine TbaikI have a pre-encoded video according to youtube recommendations, and I set ffmpeg to upload it without another re-encode. after 20 seconds youtube says the stream ended.

while I can see in my terminal that ffmpeg is still running and sending up data.

my ffmpeg command is :

ffmpeg -i video.flv -vcodec copy -acodec copy -f flv "rtmp://a.rtmp.youtube.com/live2/my_key"



my understanding is the upload happens so fast (I have 1Gbps fiber internet) while ffmpeg processor is still running in the background on my terminal.

is that the case ? is there anything I can do about it or to fix this ?

-
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