
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (96)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (9697)
-
using ffmpeg to live stream to Youtube
6 septembre 2018, par Bruno PicardiI created an app in Windows to live stream the content of all the screen or only a portion of it (a Windows) to Youtube.
I used this app but I still have a problem I’m not able to understand.
I use different internet connections : ADSL at home 30Mbit, or ADSL router outside ad 2.5Mbit.
In any case, after starting ffmpeg to live stream the fps strats growing from 300 to 2000 the transmission is perfect for some minutes, then the fps slowdown until a very low value for the bitrate of the Youtube streaming. The image is no more clear and disappears, the audio is still working. The CPU is still under the 35-40% of usage.
ffmpeg must be restarted to get another 5-7 minutes of good transmission.
I tryed changing the ffmpeg command line but nothing seams to influence this behaviour.
This is because I still don’t undestand Where the problem is. Any suggestions ?
A log of a single session (aprox. 20 minutes) is available here http://www.mbinet.it/public/ffmpeg-20180106-094446.txt
Another (aprox. 5 min.) is available here http://www.mbinet.it/public/ffmpeg-20180106-105529.txt
Thanks -
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 -
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 ?