From 431adaa2f906873c3295300b614142859c6932ae Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Mon, 23 Sep 2024 12:24:22 +0200 Subject: [PATCH] fmp4: examples: hls_live: don't set header-update-mode=update No need to update the header in live mode. Part-of: --- mux/fmp4/examples/hls_live.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/mux/fmp4/examples/hls_live.rs b/mux/fmp4/examples/hls_live.rs index 661cd0ef..77dce7f1 100644 --- a/mux/fmp4/examples/hls_live.rs +++ b/mux/fmp4/examples/hls_live.rs @@ -422,7 +422,6 @@ impl VideoStream { .build()?; let mux = gst::ElementFactory::make("cmafmux") .property("fragment-duration", 2500.mseconds()) - .property_from_str("header-update-mode", "update") .property("write-mehd", true) .build()?; let appsink = gst_app::AppSink::builder().buffer_list(true).build();