mirror of
https://github.com/nathom/streamrip.git
synced 2025-05-17 00:24:50 -04:00
Add composer key to folder format; #67
This commit is contained in:
parent
0a5364abef
commit
6b04ac45ab
1 changed files with 9 additions and 1 deletions
|
@ -132,7 +132,15 @@ FLAC_MAX_BLOCKSIZE = 16777215 # 16.7 MB
|
||||||
|
|
||||||
# TODO: give these more descriptive names
|
# TODO: give these more descriptive names
|
||||||
TRACK_KEYS = ("tracknumber", "artist", "albumartist", "composer", "title")
|
TRACK_KEYS = ("tracknumber", "artist", "albumartist", "composer", "title")
|
||||||
ALBUM_KEYS = ("albumartist", "title", "year", "bit_depth", "sampling_rate", "container")
|
ALBUM_KEYS = (
|
||||||
|
"albumartist",
|
||||||
|
"title",
|
||||||
|
"year",
|
||||||
|
"bit_depth",
|
||||||
|
"sampling_rate",
|
||||||
|
"container",
|
||||||
|
"composer",
|
||||||
|
)
|
||||||
# TODO: rename these to DEFAULT_FOLDER_FORMAT etc
|
# TODO: rename these to DEFAULT_FOLDER_FORMAT etc
|
||||||
FOLDER_FORMAT = (
|
FOLDER_FORMAT = (
|
||||||
"{albumartist} - {title} ({year}) [{container}] [{bit_depth}B-{sampling_rate}kHz]"
|
"{albumartist} - {title} ({year}) [{container}] [{bit_depth}B-{sampling_rate}kHz]"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue