Add post-download conversion feature

This commit is contained in:
York
2025-09-20 13:46:30 +08:00
committed by GitHub
parent 5578600359
commit 90f97e0d14
3 changed files with 133 additions and 0 deletions

View File

@@ -38,6 +38,13 @@ type ConfigSet struct {
DlAlbumcoverForPlaylist bool `yaml:"dl-albumcover-for-playlist"`
MVAudioType string `yaml:"mv-audio-type"`
MVMax int `yaml:"mv-max"`
ConvertAfterDownload bool `yaml:"convert-after-download"`
ConvertFormat string `yaml:"convert-format"`
ConvertKeepOriginal bool `yaml:"convert-keep-original"`
ConvertSkipIfSourceMatch bool `yaml:"convert-skip-if-source-matches"`
FFmpegPath string `yaml:"ffmpeg-path"`
ConvertExtraArgs string `yaml:"convert-extra-args"`
ConvertWarnLossyToLossless bool `yaml:"convert-warn-lossy-to-lossless"`
}
type Counter struct {