
Recherche avancée
Autres articles (35)
-
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. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
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 (4012)
-
centos FFmpeg when I am using exec_static it shows only 1 minute live stream
7 janvier 2020, par DAVIT TSILOSANIHello I am using Centos 7 Ngnix RTMP module
and I am using FFmpeg alsoWhen I am streaming using console
Using that command
ffmpeg -re -i http://website......./index.m3u8 -vcodec libx264
-vprofile baseline -g 30 -acodec aac -strict -2 -f flv rtmp ://localhost/show/stream5Everything is fine,
stream is broadcasting livebut when I put it into Ngnix
such as
exec_static ffmpeg -re -i website......./index.m3u8 -vcodec libx264
-vprofile baseline -g 30 -acodec aac -strict -2 -f flv rtmp ://localhost/show/stream5It only shows 1 minute live stream after reloading, it starts over and over and over
Can u tell me what can I do to solve it ?
-
libavformat/hls : add an option to start from a given segment in a live stream
29 mars 2015, par Rodger Combs -
transcode segment files without stutter for http live streaming
28 juillet 2015, par zerocapI segmented a multicast video stream into small ts files for my HTTP live streaming service and it worked quite well. Then I found the bitrate of the source was too high (1.5mbps) so I set up a background job to transcode the ts files to a smaller bitrate (500kbps) using FFmpeg. The problem is that the 500k .m3u8 playback stutters(on every new file’s loading) and is not as smooth as the 1.5mbps one.
My transcoding command line is like following :
ffmpeg -i /home/rca/tst.ts -f mpegts -acodec libmp3lame -ar 48000 -ab 64k -vcodec libx264 -b 500k /home/rca/tst.ts
Any ideas for this ? Thank you !