You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TIDAL has announced to change from MQA to HiRes-FLAC starting in August 2023.
Would you please implement downloading HiRes-FLAC "HI_RES_LOSSLESS" files?
The text was updated successfully, but these errors were encountered:
It turns out very little was needed to add support for HI_RES. I have added a couple of helper functions to allow setting the quality manually, otherwise it will use HIGH per default.
importtidalapisession=tidalapi.Session()
# Will run until you visit the printed url and link your accountsession.login_oauth_simple()
# Override the required playback quality, if necessarysession.set_audio_quality(Quality.lossless)
# session.set_audio_quality(Quality.master)album=session.album(66236918)
tracks=album.tracks()
fortrackintracks:
print(track.name)
forartistintrack.artists:
print(' by: ', artist.name)
TIDAL has announced to change from MQA to HiRes-FLAC starting in August 2023.
Would you please implement downloading HiRes-FLAC "HI_RES_LOSSLESS" files?
The text was updated successfully, but these errors were encountered: