Skip to content

Commit 1214a70

Browse files
committed
Fixed CRF
1 parent 9a5555c commit 1214a70

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

ffmpeg.go

-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ func buildUpscalingParams(anime Anime, resolution Resolution, shader Shader, out
8383
"-c:a", "copy", // Copy all audio streams without re-encoding
8484
"-c:s", "mov_text", // Force re-encoding subtitles with mov_text codec for compatibility reasons
8585
"-map", "0", // Map all streams
86-
"-crf", "0", // Set Constant Rate Factor (CRF) to 0 for better video quality
8786
)
8887

8988
if !settings.CompatibilityMode {

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
g "github.com/AllenDang/giu"
1212
)
1313

14-
const version = "1.0.8"
14+
const version = "1.0.8-hotfix1"
1515

1616
var (
1717

0 commit comments

Comments
 (0)