
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (85)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
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.
Sur d’autres sites (11071)
-
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