Some checks failed
CodeQL / Analyze (go) (push) Successful in 6m28s
Docker Image / build-docker (push) Failing after 13m26s
Lint and Testing / lint (push) Successful in 11m17s
Lint and Testing / test (push) Successful in 11m17s
Lint and Testing / golangci (push) Successful in 2m40s
12 lines
325 B
Go
12 lines
325 B
Go
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
|
|
}
|