Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (46)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (6353)

  • Redirect RTMP protocol to another RTMP stream

    25 novembre 2016, par user2425700

    Is it possible to redirect RTMP protocol to another RTMP stream ?

    If yes, How can i do it ?

    In details :
    Ex : I got rtmp://mydomain.com/stream/redirect and i want this to redirect or fetch content/stream from rtmp://otherdomain.com/stream/

  • doc/protocols : document "srtp" protocol

    19 juin 2013, par Andrey Utkin
    doc/protocols : document "srtp" protocol
    

    Signed-off-by : Stefano Sabatini <stefasab@gmail.com>

    • [DH] doc/protocols.texi
  • Facing Severe Buffering Issues in FFmpeg Pipeline for Simultaneous Video and Audio Live Streaming via SRT Protocol

    7 novembre 2023, par Johnny

    I'm currently working on a project where I'm using FFmpeg to livestream via Cloudflare using the SRT protocol. My main goal is to make sure I can stream both video and audio at the same time. Things have been going well with video streaming, but I've run into a bit of a problem when it comes to adding audio to the mix.

    &#xA;

    The issue I'm facing is that when I try to connect the audio to the video stream, I'm having some serious buffering problems. The video with audio does work, but all that buffering is messing up the quality of the livestream.

    &#xA;

    I have a feeling the problem might have something to do with my FFmpeg pipeline, but I'm still pretty new to using FFmpeg. Could someone please lend a hand and help me figure out how to fix this buffering issue in my FFmpeg setup so I can livestream both video and audio at the same time ? Any advice or suggestions you have would be a huge help.

    &#xA;

    Here's the code I'm using for my FFmpeg pipeline :

    &#xA;

    ffmpeg_stream = [&#xA;            "ffmpeg",&#xA;            "-re",&#xA;            "-flags", "&#x2B;global_header",&#xA;            "-fflags", "&#x2B;genpts",&#xA;            "-threads", "8",&#xA;            "-thread_queue_size", "1024",&#xA;            "-loglevel", "debug",&#xA;            "-f", "rawvideo",&#xA;            "-pix_fmt", "bgr24",&#xA;            "-s", "1280x720",&#xA;            "-i", "-",&#xA;            "-channel_layout", "mono",&#xA;            "-f", "alsa",&#xA;            "-thread_queue_size", "32768",&#xA;            "-ac", "1",&#xA;            "-i", "hw:4,0",&#xA;            "-pix_fmt", "yuv420p",&#xA;            "-c:v", "libx264",&#xA;            "-max_muxing_queue_size", "9999",&#xA;            "-b:v:0", "3000k",&#xA;            "-g", "25",&#xA;            "-c:a", "aac",&#xA;            "-ar", "44100",&#xA;            "-b:a", "128k",&#xA;            "-map", "0:v:0",&#xA;            "-map", "1:a:0",&#xA;            "-preset", "veryfast",&#xA;            "-tune", "zerolatency",&#xA;            "-f", "mpegts",&#xA;            my_srt_url&#xA;        ]&#xA;

    &#xA;

    Let me know if any other info is needed. Thanks !

    &#xA;