
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (43)
-
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. -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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
Sur d’autres sites (7120)
-
FFMpeg : How to stream to Facebook Live ? [closed]
22 mars 2024, par Thomas CarltonI have ffmpeg on Windows.


I would like to stream an mp4 file to Facebook Live. The video has an audio track.


I am running the following command :


ffmpeg 
 -re -i video.mp4 
 -acodec libmp3lame 
 -b:a 128k 
 -pix_fmt yuv420p 
 -profile:v baseline 
 -bufsize 6000k 
 -maxrate 1500k 
 -deinterlace 
 -vcodec libx264 
 -preset veryfast 
 -g 30 
 -r 30 
 -f flv 
 -flvflags no_duration_filesize 
 "rtmps://live-api-s.facebook.com:443/rtmp/mykey"



This command works for exactly 14 frames and then it stops.




Then, I'm getting the following error saying "Conversion failed".




I tried to stream to AWS IVS. But I'm getting the exact same error.


What is wrong with my command ?


-
live broadcasting with ffmpeg & icecast2
1er octobre 2018, par Wasim KhanCurrently I am live broadcasting mediarecord + nodejs + ffmpeg + icecast2. Streaming using webm is working fine. I need to send mp4 streaming to icecast from webm.
ffmpeg args below :
args = [
'-i', '-',
'-f', 'webm',
'-cluster_size_limit', '2M', '-cluster_time_limit', '5100', '-content_type', 'video/webm',
'-vcodec', 'copy', '-acodec', 'copy',
iceUrl + '.webm'
];Anyone have some idea how to send mp4 stream from webm stream to icecast2 ?
-
How do i make a daily error log file, for a live stream, using FFMPEG ?
14 février 2018, par Broadcasting123I am using FFMPEG to convert a stream on the fly, but i want to log all the errors in file. The file should be generated daily, whilst the stream is 24/7.
What command can i use ?At the moment i have used this command :
ffmpeg -i ... commands ..... -loglevel warning -report
I want the file to be written every day for the live stream, but each day makes it own file, instead of one file.
Thanks