
Recherche avancée
Médias (21)
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (40)
-
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 -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (7854)
-
Android : Live Stream RMTP video from Wowza server
4 décembre 2013, par TamannaI am developing an android application in which i want to publish as well as stream a video..
What I want is :
-
My app record a video and that video is sent to server
-
The recorded vieo will ve streamed live to another android device at the
same time..
I have completed the first task using javac and ffmpeg
I am stuck in second task.. i have searched a lot to stream the video from server but didn't succeed..
I dont want to use WebView and play the video in It. I want RMTP player ..
This task has been completed in iOS.. I want dame for Android..
Can anyone suggest me some link to fulfill my task ???P.S. :
I am using wowza server and RMTP stream.. I would like to stream RMTP video(.flv).. If no solution avaliable. i can swicth to RSTP
-
-
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 ?