
Recherche avancée
Autres articles (35)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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 -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (5952)
-
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 !