Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion streamrip/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ add_singles_to_folder = false
# Available keys: "albumartist", "title", "year", "bit_depth", "sampling_rate",
# "id", and "albumcomposer"
folder_format = "{albumartist} - {title} ({year}) [{container}] [{bit_depth}B-{sampling_rate}kHz]"
# Available keys: "tracknumber", "artist", "albumartist", "composer", "title",
# Available keys: "id", "tracknumber", "artist", "albumartist", "composer", "title",
# and "albumcomposer", "explicit"
track_format = "{tracknumber:02}. {artist} - {title}{explicit}"
# Only allow printable ASCII characters in filenames.
Expand Down
1 change: 1 addition & 0 deletions streamrip/metadata/track.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ def format_track_path(self, format_string: str) -> str:
# and "explicit", "albumcomposer"
none_text = "Unknown"
info = {
"id": self.info.id,
"title": self.title,
"tracknumber": self.tracknumber,
"artist": self.artist,
Expand Down