
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (46)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP 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, parMediaSPIP 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 user2425700Is it possible to redirect RTMP protocol to another RTMP stream ?
If yes, How can i do it ?
In details :
Ex : I gotrtmp://mydomain.com/stream/redirec
t and i want this to redirect or fetch content/stream fromrtmp://otherdomain.com/stream/
-
doc/protocols : document "srtp" protocol
19 juin 2013, par Andrey Utkin -
Facing Severe Buffering Issues in FFmpeg Pipeline for Simultaneous Video and Audio Live Streaming via SRT Protocol
7 novembre 2023, par JohnnyI'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.


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.


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.


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


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



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