
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (99)
-
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 -
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" ; -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (5470)
-
Broadcasting to youtube live via rtmp using VLC from terminal
10 novembre 2016, par devprashantWhen running :
cvlc -vvv 'Bootstrap Tutorial.mp4' --sout
'#rtp{dst=rtmp://a.rtmp.youtube.com/live2,name=pa1p-8c4m-zzvp-5j6t,mux=ts}'I get the following debugging log : http://www.wepaste.com/vlcdebug/
when additionally specifying the access method :
cvlc -vvv 'Bootstrap Tutorial.mp4' --sout
'#std{access=rtmp,dst=rtmp://a.rtmp.youtube.com/live2/pa1p-8c4m-zzvp-5j6t,mux=ts}'I get the following debugging log : http://www.wepaste.com/vlcdebug2/
How do I stream live video and audio to youtube using VLC from terminal.
Resources I looked into :
- https://blog.vucica.net/2015/08/streaming-to-youtube-live-with-vlc-and-ffmpeg.html
- https://forum.videolan.org/viewtopic.php?f=14&t=130520&p=436913&hilit=rtmp+youtube#p436913
- Problems Starting VLC HTTP Stream with Servlet
- https://forum.videolan.org/viewtopic.php?f=4&t=112221&p=380232&hilit=rtmp+youtube#p380232
-
Broadcast to youtube live via rtmp using vlc from terminal
7 novembre 2016, par devprashantWhen run :
cvlc -vvv 'Bootstrap Tutorial.mp4' --sout
'#rtp{dst=rtmp://a.rtmp.youtube.com/live2,name=pa1p-8c4m-zzvp-5j6t,mux=ts}'i got this debug : http://www.wepaste.com/vlcdebug/
when run :
cvlc -vvv 'Bootstrap Tutorial.mp4' --sout
'#std{access=rtmp,dst=rtmp://a.rtmp.youtube.com/live2/pa1p-8c4m-zzvp-5j6t,mux=ts}'i got this debug http://www.wepaste.com/vlcdebug2/
how to stream live video and audio to youtube using vlc from terminal.
Resources followed :
- https://blog.vucica.net/2015/08/streaming-to-youtube-live-with-vlc-and-ffmpeg.html
- https://forum.videolan.org/viewtopic.php?f=14&t=130520&p=436913&hilit=rtmp+youtube#p436913
- Problems Starting VLC HTTP Stream with Servlet
- https://forum.videolan.org/viewtopic.php?f=4&t=112221&p=380232&hilit=rtmp+youtube#p380232
-
Video output desaturation after compression with ffmpeg
7 avril 2015, par DriesThis is a followup question to this : SO question
I’ve found out that if I encode the input with
ffv1
to an .mkv file the video isn’t desaturated. Problem with this is that the file is very large.
I’ve learned about this encoder here : Forum linkThe information you can find there is what I’m currently using to encode my video. Now, since I want the video to be much smaller I thought I could reencode it so it will be compressed. I added this new ffmpeg command :
ffmpeg -i INPUT.mkv -vcodec mpeg4 -vtag xvid -q:v 1 OUTPUT.avi
This works just fine but the problem is that once again the video is desaturated as if I’m just encoding to the mpeg format.
Is there something I can change to this so I don’t have the video being desaturated ? If you’re going to recommend another codec, I need it to be one with the LGPL license. (I’ve also tried encoding with libx264 codec with this also desaturated my video)
Thanks in advance !