Recherche avancée

Médias (91)

Autres articles (69)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (10466)

  • avformat/rtsp : Set port_off to zero for low min/max port range

    4 juillet 2021, par Andriy Gelman
    avformat/rtsp : Set port_off to zero for low min/max port range
    

    Fixes :
    $ ffmpeg -min_port 32000 -max_port 32001 -i rtsp ://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov -f null -
    [1] 303871 floating point exception (core dumped)

    Reviewed-by : Martin Storsjö <martin@martin.st>
    Signed-off-by : Andriy Gelman <andriy.gelman@gmail.com>

    • [DH] libavformat/rtsp.c
  • Looking for a RTSP-server that can listen on a configured port and support subtitle or text streaming

    15 août 2021, par GotIt

    I'm looking for a RTSP-server that can listen on a configured port (8554 for example), then if I run FFmpeg with :

    &#xA;

    &#xA;

    ffmpeg -f v4l2 -i /dev/video0 -c:v libx264 -intra -an -f rtsp&#xA;-rtsp_transport tcp rtsp ://192.168.1.10:8554/test

    &#xA;

    &#xA;

    Then the RTSP-server will RECORD the video, and to play it, I just need to run it with :

    &#xA;

    &#xA;

    ffplay -i rtsp ://192.168.1.10:8554/test

    &#xA;

    &#xA;

    I need the RTSP-server to support TCP transport and H264 video encoder and any of subtitle or text encoder (mov_text, T.140, etc.) and stream from a live-video.

    &#xA;

    Live555 only streams from files (VOD).&#xA;simple-rtsp-server only support video and audio, no subtitle.&#xA;I'd prefer something open-source. Thank you so much.

    &#xA;

  • Forwarding rtsp feed from one local port to another

    11 août 2021, par Thabet Sabha

    so let's say I have an rtsp server running on port 554, and when a certain command is received, i want the rtsp server to start forwarding the feed (using rtsp+tcp) to a service running on the same machine but on port 553 (Linux OS), is that possible via a CL command, or do I have to use something like ffmpeg ?

    &#xA;

    currently this is what is being used, but I feel like this is redundant since all we're doing is just forwarding the feed to another port on the same machine.

    &#xA;

    const ffmpegOptions = [&#xA;"-rtsp_transport", "tcp",&#xA;"-i", "rtsp://127.0.0.1:554",&#xA;"-codec", "copy",&#xA;"-f", "rtsp",&#xA;"-rtsp_transport", "tcp",&#xA;"rtsp://127.0.0.1:553"&#xA;]&#xA;&#xA;const myProcess = spawn(&#x27;ffmpeg&#x27;, ffmpegOptions);&#xA;

    &#xA;

    Thanks.

    &#xA;