package config // Transcode holds audio normalization settings (pure Go decoders; no external ffmpeg). type Transcode struct { // FFmpegPath is deprecated and ignored; kept for backward-compatible YAML. FFmpegPath string `yaml:"ffmpeg_path,omitempty"` } func (t Transcode) WithDefaults() Transcode { return t }