From 3408e48db9f928481c95269b0bb166459a2fbc91 Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Sat, 12 Nov 2022 03:05:30 -0800 Subject: [PATCH] More tuning --- stream.go | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/stream.go b/stream.go index 79de6f8d..d6e0b14b 100644 --- a/stream.go +++ b/stream.go @@ -39,8 +39,9 @@ type Stream struct { goal int - mutex sync.Mutex - chunks map[int]*Chunk + mutex sync.Mutex + chunks map[int]*Chunk + seenChunks map[int]bool // only for stdout reader coder *exec.Cmd @@ -94,6 +95,7 @@ func (s *Stream) clear() { } s.chunks = make(map[int]*Chunk) + s.seenChunks = make(map[int]bool) s.goal = 0 if s.coder != nil { @@ -347,7 +349,7 @@ func (s *Stream) transcode(startId int) { "-avoid_negative_ts", "disabled", "-f", "hls", "-hls_time", fmt.Sprintf("%d", s.c.chunkSize), - "-g", "64", "-keyint_min", "64", + "-force_key_frames", fmt.Sprintf("expr:gte(t,n_forced*%d)", s.c.chunkSize), "-hls_segment_type", "mpegts", "-start_number", fmt.Sprintf("%d", startId), "-hls_segment_filename", s.getTsPath(-1), @@ -425,9 +427,6 @@ func (s *Stream) monitorTranscodeOutput(cmdStdOut io.ReadCloser, startAt float64 l := string(line) if strings.Contains(l, ".ts") { - // Debug - log.Printf("%s-%s: recv %s", s.m.id, s.quality, l) - // 1080p-000003.ts idx := strings.Split(strings.Split(l, "-")[1], ".")[0] id, err := strconv.Atoi(idx) @@ -435,6 +434,14 @@ func (s *Stream) monitorTranscodeOutput(cmdStdOut io.ReadCloser, startAt float64 log.Println("Error parsing chunk id") } + if s.seenChunks[id] { + continue + } + s.seenChunks[id] = true + + // Debug + log.Printf("%s-%s: recv %s", s.m.id, s.quality, l) + func() { s.mutex.Lock() defer s.mutex.Unlock()