13 lines
241 B
Python
13 lines
241 B
Python
# All file extensions that are supported and have tag
|
||
# extraction
|
||
supported_formats = ["mp3", "flac"]
|
||
|
||
sub_char = "_"
|
||
|
||
substitutions = {
|
||
"α": "a",
|
||
}
|
||
|
||
# Patch to whatever path ffmpeg is at
|
||
ffmpeg_path = "ffmpeg"
|
||
ffprobe_path = "ffprobe" |