Merge pull request #7 from remz1337/master

Drop the hwaccel_output_format argument to fix issue #6
monorepo
Varun Patil 2023-03-14 11:52:56 -07:00 committed by GitHub
commit bfbe46fa98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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, " ")...)
}