From df36346566d9870550275883931a46f98dbd0c64 Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Tue, 9 Jun 2026 20:39:44 +0200 Subject: [PATCH] use default option name for force stream tag --- src/transcoder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transcoder.rs b/src/transcoder.rs index d087a27..c80b089 100644 --- a/src/transcoder.rs +++ b/src/transcoder.rs @@ -893,7 +893,7 @@ impl Transcoder { }, "stream_tag" => { if let Ok(tag) = format_stream_tag(streamno, oval[1]) { - self.mux_opts.push(OptionArgs{ name: "stream_tag".to_string(), value: Some(tag) }); + self.mux_opts.push(OptionArgs{ name: FORCE_STREAM_TAG_OPTION.to_string(), value: Some(tag) }); } else { println!("invalid stream tag"); } -- 2.39.5