nixfiles/musicutil/meta.py

14 lines
268 B
Python
Raw Normal View History

2022-02-04 13:54:10 +00:00
# All file extensions that are supported and have tag
# extraction
2022-02-04 13:32:22 +00:00
supported_formats = ["mp3", "flac"]
sub_char = "_"
substitutions = {
2022-02-04 13:54:10 +00:00
"α": "a",
}
2022-02-04 16:19:11 +00:00
# Patch to whatever path ffmpeg is at
ffmpeg_path = "ffmpeg"
2022-02-06 15:20:12 +00:00
ffprobe_path = "ffprobe"
r128gain_path = "r128gain"