Drop the hwaccel_output_format argument to fix issue #6

monorepo
Rémi Bédard-Couture 2023-03-14 14:27:44 -04:00
parent 95cfe3fd57
commit 6710930109
1 changed files with 1 additions and 1 deletions

View File

@ -378,7 +378,7 @@ func (s *Stream) transcodeArgs(startAt float64) []string {
args = append(args, strings.Split(extra, " ")...)
} else if s.c.NVENC {
CV = "h264_nvenc"
extra := "-hwaccel cuda -hwaccel_output_format cuda"
extra := "-hwaccel cuda"
args = append(args, strings.Split(extra, " ")...)
}