Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (35)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette 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 2011

    MediaSPIP 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, par

    MediaSPIP 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 TSILOSANI

    Hello I am using Centos 7 Ngnix RTMP module
    and I am using FFmpeg also

    When 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/stream5

    Everything is fine,
    stream is broadcasting live

    but 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/stream5

    It 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
    libavformat/hls : add an option to start from a given segment in a live stream
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/hls.c
  • transcode segment files without stutter for http live streaming

    28 juillet 2015, par zerocap

    I 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 !