nixfiles/musicutil/meta.py

13 lines
241 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"
ffprobe_path = "ffprobe"