From c635fc00c3c4906e5ff63f5fe2efc0cf080188b1 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Sat, 10 Feb 2024 22:32:35 +0100 Subject: [PATCH] Add back segment time delta --- transcoder/src/stream.go | 1 + 1 file changed, 1 insertion(+) diff --git a/transcoder/src/stream.go b/transcoder/src/stream.go index ccec171c..5626c0e1 100644 --- a/transcoder/src/stream.go +++ b/transcoder/src/stream.go @@ -145,6 +145,7 @@ func (ts *Stream) run(start int32) error { args = append(args, ts.handle.getTranscodeArgs(segments_str)...) args = append(args, []string{ "-f", "segment", + "-segment_time_delta", "0.2", "-segment_format", "mpegts", "-segment_times", segments_str, "-segment_start_number", fmt.Sprint(start),