From c47e376e096fd40a8730040e8456f751150f8e50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Cr=C3=AAte?= Date: Wed, 21 Aug 2019 16:00:56 -0400 Subject: [PATCH] Remove mode=listener from printed URI --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index 8642780..c768bc5 100644 --- a/src/main.c +++ b/src/main.c @@ -6,7 +6,7 @@ #define GST_USE_UNSTABLE_API #include -#define DEFAULT_SRT_URI "srt://127.0.0.1:7001?mode=listener" +#define DEFAULT_SRT_URI "srt://127.0.0.1:7001" #define DEFAULT_RIST_ADDRESSES "127.0.0.1:5004" static gchar *srt_uri = NULL; @@ -224,9 +224,9 @@ int main (int argc, char *argv[]) http_server = mss_http_server_new (); - pipeline_str = g_strdup_printf ("srtsrc uri=%s ! tsparse ! tee name=t ! " "queue ! decodebin ! videoconvert ! autovideosink " "t. ! queue leaky=downstream ! tsdemux ! mpegtsmux ! hlssink location=%s/segment%%05d.ts playlist-location=%s/playlist.m3u8 target-duration=5 playlist-length=3 " + pipeline_str = g_strdup_printf ("srtsrc uri=%s?mode=listener ! tsparse ! tee name=t" "t. ! queue leaky=downstream max-size-buffers=400 ! rtpmp2tpay ! ristsink bonding-addresses=%s " "t. ! queue leaky=downstream ! tsdemux ! h264parse ! rtph264pay ! application/x-rtp,payload=96 ! tee name=webrtctee allow-not-linked=true " "t. ! queue leaky=downstream max-size-buffers=400 ! srtsink uri=srt://:7002?mode=listener", -- GitLab