LaurenceRawlings / savify

Download Spotify songs to mp3 with full metadata and cover art!
MIT License
1.19k stars 80 forks source link

Can not change the quality of mp3 #7

Closed elox92 closed 3 years ago

elox92 commented 4 years ago

Description

When trying to download mp3 and use a custom quality I get and int() error. Only when use quality=Quality.BEST I get the mp3 without error, but the bitrate is 124kbps in all the mp3 songs.

What I Did

s = Savify(api_credentials=("user","pass"), download_format='mp3', quality=Quality.Q256K, output_path=Path(C:\Users\name\Desktop), group='%album%') s.download(link)

ERROR: invalid literal for int() with base 10: '256K'

LaurenceRawlings commented 3 years ago

Thanks for pointing this out, I am trying to find the problem and will do my best to fix soon.

LaurenceRawlings commented 3 years ago

Fixed in the latest release.

elox92 commented 3 years ago

Thanks for the fix