Default encoder preset to slow
This commit is contained in:
parent
b1f3daa3e4
commit
a878970be7
1
DONE.md
1
DONE.md
|
|
@ -823,6 +823,7 @@ This file tracks completed features, fixes, and milestones.
|
||||||
- ✅ Fixed reset handler scope for convert tabs
|
- ✅ Fixed reset handler scope for convert tabs
|
||||||
- ✅ Restored 25%/33%/50%/75% target size reduction presets
|
- ✅ Restored 25%/33%/50%/75% target size reduction presets
|
||||||
- ✅ Default bitrate preset set to 2.5 Mbps and added 2.0 Mbps option
|
- ✅ Default bitrate preset set to 2.5 Mbps and added 2.0 Mbps option
|
||||||
|
- ✅ Default encoder preset set to slow
|
||||||
- ✅ Stabilized video seeking and embedded rendering
|
- ✅ Stabilized video seeking and embedded rendering
|
||||||
- ✅ Improved player window positioning
|
- ✅ Improved player window positioning
|
||||||
- ✅ Fixed clear video functionality
|
- ✅ Fixed clear video functionality
|
||||||
|
|
|
||||||
1
TODO.md
1
TODO.md
|
|
@ -56,6 +56,7 @@ This file tracks upcoming features, improvements, and known issues.
|
||||||
- Reset handler scope fixed for convert tabs
|
- Reset handler scope fixed for convert tabs
|
||||||
- Target size reduction presets restored (25/33/50/75%)
|
- Target size reduction presets restored (25/33/50/75%)
|
||||||
- Default bitrate preset set to 2.5 Mbps with added 2.0 Mbps option
|
- Default bitrate preset set to 2.5 Mbps with added 2.0 Mbps option
|
||||||
|
- Default encoder preset set to slow
|
||||||
|
|
||||||
*Last Updated: 2025-12-20*
|
*Last Updated: 2025-12-20*
|
||||||
|
|
||||||
|
|
|
||||||
2
main.go
2
main.go
|
|
@ -515,7 +515,7 @@ func defaultConvertConfig() convertConfig {
|
||||||
AutoNameTemplate: "<actress> - <studio> - <scene>",
|
AutoNameTemplate: "<actress> - <studio> - <scene>",
|
||||||
|
|
||||||
VideoCodec: "H.264",
|
VideoCodec: "H.264",
|
||||||
EncoderPreset: "medium",
|
EncoderPreset: "slow",
|
||||||
CRF: "",
|
CRF: "",
|
||||||
BitrateMode: "CRF",
|
BitrateMode: "CRF",
|
||||||
BitratePreset: "2.5 Mbps - Medium Quality",
|
BitratePreset: "2.5 Mbps - Medium Quality",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user