From 8f26483140a9fcdd288cfeb7b7a1d464be17da25 Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Mon, 21 Nov 2022 16:22:16 -0800 Subject: [PATCH] Add map 0 to ffmpeg --- stream.go | 1 + 1 file changed, 1 insertion(+) diff --git a/stream.go b/stream.go index 7c78f379..e65255ac 100644 --- a/stream.go +++ b/stream.go @@ -323,6 +323,7 @@ func (s *Stream) transcode(startId int) { // Output specs args = append(args, []string{ + "-map", "0", "-c:v", CV, "-profile:v", "high", }...)