Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (36)

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

Sur d’autres sites (5126)

  • how to make live rtsp player using ffmpeg ?

    20 avril 2018, par geeeek

    I am creating an rtsp live viewer using ffmpeg. I have a question about video delay, so I ask.

    At beginning play live rtsp, Video delay is about 2 seconds on general movie player(vlc, gom). However, when the playback speed is increased, the delay is reduced and the video delay is shortened to about 300 ms.

    I do not know how to reduce the delay to speed up or speed up this playback on my ffmpeg player.

    It seems like I can use something like av_seek_frame, but it does not work.
    How can I reduce live rtsp video delay with ffmpeg ?

    In summary, I’d like to get the latest frame to be av_read_frame in live rtsp.

  • How to close live streaming red5 server command in shell from php

    20 décembre 2016, par vibhor Gupta

    I have live streaming ffmpeg decode streaming streamed to client using red5 server to user browser.
    Now the problem is i have to run the ffmpeg command in ubantu server shell which keeps on streaming constantly to the user .
    So my problem is how to stop this live stream when user request .

    Environment :
    PHP version 5.5.9
    ffmpeg version 3.2.2
    Ubuntu 14.04.5 LTS

    The php script I use to execute the shell command is :

    $cmd = 'ffmpeg -i rtsp://user:12345@192.168.101.101/Streaming/Channels/101 -f flv -an rtmp://192.168.1.105/live/livestream/1.mp4' ;
           shell_exec($cmd);

    The above script never ends so i get the live streaming but if i place any other http request during the live streaming the server puts the request in queue and does not process any other request until the live streaming is closed .

    So how can i handle this condition is there any other function in php .

  • ffmpeg how to start encoding at live point (not from beginning)

    9 avril 2021, par Jintor

    Is there a way with ffmpeg to start encoding at "live point" (in other words at last encoded frame...)

    


    let met explain : 2 ffmpeg process

    


    [1] x11grab that is being generated that started a 2:00 pm.... and still continue live (I don't want to stop and continue encoding live)

    


    [2] restream the [1] but at live point (at where it is encoding now) not from start...

    


    If [2] is being triggered at 2:15 pm, it will load the first frame of [1] (start to encode from 2pm)

    


    but I want that it load the last few frames of [1] as a starting point (2:15pm)...

    


    I know that I could ffmpeg -i -ss but I have to specify a x number of seconds after -ss...

    


    is there a better way ?