|
|
@ -44,23 +44,10 @@ codecPriority = ["alac", "ec3", "ac3", "aac"] |
|
|
|
# Encapsulate Atmos(ec-3/ac-3) as M4A and write the song metadata |
|
|
|
# Encapsulate Atmos(ec-3/ac-3) as M4A and write the song metadata |
|
|
|
atmosConventToM4a = true |
|
|
|
atmosConventToM4a = true |
|
|
|
# Follow the Python Format format (https://docs.python.org/3/library/string.html#formatstrings) |
|
|
|
# Follow the Python Format format (https://docs.python.org/3/library/string.html#formatstrings) |
|
|
|
# Write the audio information to the songNameFormat and playlistSongNameFormat |
|
|
|
|
|
|
|
# Only support alac codec |
|
|
|
|
|
|
|
# Available values: bit_depth, sample_rate, sample_rate_kHz, codec |
|
|
|
|
|
|
|
# This feature may slow down the speed of checking for existing songs |
|
|
|
|
|
|
|
# For example: |
|
|
|
|
|
|
|
# audioInfoFormat = " [{codec}][{bit_depth}bit][{sample_rate_kHz}kHz]" |
|
|
|
|
|
|
|
# songNameFormat = "{disk}-{tracknum:02d} {title}{audio_info}" |
|
|
|
|
|
|
|
# When transcribing audio with alac codec, the transcribed file name is: |
|
|
|
|
|
|
|
# 1-01 名もなき何もかも [ALAC][16bit][44.1kHz] |
|
|
|
|
|
|
|
# When transcribing audio with other codecs, the transcribed file name is: |
|
|
|
|
|
|
|
# 1-01 名もなき何もかも |
|
|
|
|
|
|
|
audioInfoFormat = "" |
|
|
|
|
|
|
|
# Available values: |
|
|
|
# Available values: |
|
|
|
# title, artist, album, album_artist, composer, |
|
|
|
# title, artist, album, album_artist, composer, |
|
|
|
# genre, created, track, tracknum, disk, |
|
|
|
# genre, created, track, tracknum, disk, |
|
|
|
# record_company, upc, isrc, copyright, codec, audio_info |
|
|
|
# record_company, upc, isrc, copyright, codec |
|
|
|
# song_id, album_id |
|
|
|
|
|
|
|
songNameFormat = "{disk}-{tracknum:02d} {title}" |
|
|
|
songNameFormat = "{disk}-{tracknum:02d} {title}" |
|
|
|
# Ditto |
|
|
|
# Ditto |
|
|
|
dirPathFormat = "downloads/{album_artist}/{album}" |
|
|
|
dirPathFormat = "downloads/{album_artist}/{album}" |
|
|
@ -73,9 +60,8 @@ playlistDirPathFormat = "downloads/playlists/{playlistName}" |
|
|
|
# Available values: |
|
|
|
# Available values: |
|
|
|
# title, artist, album, album_artist, composer, |
|
|
|
# title, artist, album, album_artist, composer, |
|
|
|
# genre, created, track, tracknum, disk, |
|
|
|
# genre, created, track, tracknum, disk, |
|
|
|
# record_company, upc, isrc, copyright, audio_info |
|
|
|
# record_company, upc, isrc, copyright, |
|
|
|
# playlistName, playlistCuratorName, playlistSongIndex, codec |
|
|
|
# playlistName, playlistCuratorName, playlistSongIndex, codec |
|
|
|
# song_id, album_id |
|
|
|
|
|
|
|
playlistSongNameFormat = "{playlistSongIndex:02d}. {artist} - {title}" |
|
|
|
playlistSongNameFormat = "{playlistSongIndex:02d}. {artist} - {title}" |
|
|
|
# Save lyrics as .lrc file |
|
|
|
# Save lyrics as .lrc file |
|
|
|
saveLyrics = true |
|
|
|
saveLyrics = true |
|
|
@ -97,3 +83,9 @@ afterDownloaded = "" |
|
|
|
embedMetadata = ["title", "artist", "album", "album_artist", "composer", |
|
|
|
embedMetadata = ["title", "artist", "album", "album_artist", "composer", |
|
|
|
"genre", "created", "track", "tracknum", "disk", "lyrics", "cover", "copyright", |
|
|
|
"genre", "created", "track", "tracknum", "disk", "lyrics", "cover", "copyright", |
|
|
|
"record_company", "upc", "isrc","rtng"] |
|
|
|
"record_company", "upc", "isrc","rtng"] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[mitm] |
|
|
|
|
|
|
|
# The host proxy server listens on |
|
|
|
|
|
|
|
host = "127.0.0.1" |
|
|
|
|
|
|
|
# The port proxy server listens on |
|
|
|
|
|
|
|
port = "11080" |