Signed-off-by: nathom <nathanthomas707@gmail.com>
This commit is contained in:
nathom 2021-07-03 15:08:08 -07:00
parent 97318017e0
commit e2483ca90c
8 changed files with 98 additions and 8 deletions

View file

@ -94,6 +94,10 @@ embed = true
# "original" images can be up to 30MB, and may fail embedding.
# Using "large" is recommended.
size = "large"
# Both of these options limit the size of the embedded artwork. If their values
# are larger than the actual dimensions of the image, they will be ignored.
max_width = 999999
max_height = 999999
# Save the cover image at the highest quality as a seperate jpg file
keep_hires_cover = true
@ -128,4 +132,4 @@ fallback_source = "deezer"
check_for_updates = true
# Metadata to identify this config file. Do not change.
version = "0.6.1"
version = "0.7"

View file

@ -217,6 +217,8 @@ class MusicDL(list):
"video_downloads_folder"
],
"add_singles_to_folder": filepaths["add_singles_to_folder"],
"max_artwork_width": int(artwork["max_width"]),
"max_artwork_height": int(artwork["max_height"]),
}
def download(self):