Files
audio-conv/example.audio-conv.yaml
2021-10-27 11:05:49 +02:00

37 lines
901 B
YAML

from: ./music
to: ./converted_test
matches:
- extensions:
- flac
- wav
# and/or `glob: "**/*.flac"`
# and/or `regex: "\.flac$"`
# you can also leave it empty for the default extensions
to:
codec: opus
bitrate: 160
bitrate_type: vbr # or cbr
# for mp3:
# to:
# codec: mp3
# # one of: 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256 or 320
# bitrate: 256
# bitrate_type: vbr # or cbr
# for flac:
# to:
# codec: flac
# # effort spend for the compression. 0 (fastes compression) to 9 (highest compression)
# compression: 8
# copies the whole file without transcoding it or extracting audio from it. Using Copy on Write
# if supported by the filesystem.
# to:
# codec: copy
# extracts the audio without transcoding it
# to:
# codec: copyaudio