Skip to content

Commit

Permalink
Update ffmpeg.go change preset from slow to medium (#427)
Browse files Browse the repository at this point in the history
Going from 2 pass encode slow preset to medium preset.
  • Loading branch information
Tibia2000 authored Nov 22, 2024
1 parent ffde232 commit 7b07ba3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ffmpeg/ffmpeg.go
Original file line number Diff line number Diff line change
Expand Up @@ -671,7 +671,7 @@ func createCOutputParams(input *TranscodeOptionsIn, ps []TranscodeOptions) ([]C.
if len(p.VideoEncoder.Name) <= 0 && len(p.VideoEncoder.Opts) <= 0 {
p.VideoEncoder.Opts = map[string]string{
"forced-idr": "1",
"preset": "slow",
"preset": "medium",
"tier": "high",
}
if p.Profile.Quality != 0 {
Expand Down

0 comments on commit 7b07ba3

Please sign in to comment.