Recherche avancée

Médias (91)

Autres articles (46)

  • MediaSPIP : Modification des droits de création d’objets et de publication définitive

    11 novembre 2010, par

    Par défaut, MediaSPIP permet de créer 5 types d’objets.
    Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
    Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...)

  • 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 (...)

  • 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 (...)

Sur d’autres sites (8683)

  • libavfilter/vf_fps : Rewrite using activate callback

    22 février 2018, par Calvin Walton
    libavfilter/vf_fps : Rewrite using activate callback
    

    The old version of the filter had a problem where it would queue up
    all of the duplicate frames required to fill a timestamp gap in a
    single call to filter_frame. In problematic files - I've hit this in
    webcam streams with large gaps due to network issues - this will queue
    up a potentially huge number of frames. (I've seen it trigger the Linux
    OOM-killer on particularly large pts gaps.)

    This revised version of the filter using the activate callback will
    generate at most 1 frame each time it is called.

    • [DH] libavfilter/vf_fps.c
  • How to set youtube live title and description in ffmpeg

    10 novembre 2022, par J C

    I am using following code to live stream video in youtube.
ffmpeg -y -loop 1 -i "still.jpg" -i "audio.mp3" " -c:v libx264 -pix_fmt yuv420p -crf 21 -r 1 -g 30 -keyint_min 5 -x264opts "keyint=5:min-keyint=5:no-scenecut" -s 1280x720 -tune zerolatency -b:a 128k -c:a aac -ar 48000 -strict experimental -f flv rtmp://a.rtmp.youtube.com/live2/steam-key.
I would like to set youtube live title and description in the above command. Is it possible ?

    


  • How to check live stream is still alive use "ffprobe" command ?

    17 août 2018, par Yin JianFeng

    I want to schedule a job script to check a live stream is still alive use "ffprobe" command. So that I can change database state for those steam already dead.

    I tried the command :

    ffprobe -v quiet -print_format json -show_streams rtmp://xxxx

    but when the stream is not avaiable, the command will hang.
    I tried add -timeout argument, but still cannot work properly.