vitiko98 / qobuz-dl

A complete Lossless and Hi-Res music downloader for Qobuz
GNU General Public License v3.0
1.45k stars 192 forks source link

can't play dowloaded playlist m3u because no downloaded folder name #154

Open ddgg opened 2 years ago

ddgg commented 2 years ago

after downloading playlist, every single track is put in different folder, which is good, but the m3u doesn't have the folder information, all path start with 'Disc True', this lead to m3u not playing.

AlexanderChurbanov commented 2 years ago

same here, unfortunately, look at my screenshots

Снимок экрана 04 09 2022 в 09 01 59 Снимок экрана 04 09 2022 в 09 02 37
gagadagatika commented 2 years ago

The problem is caused by the config.ini setting embed_art = true

it's a bug in downloader.py (LIne 179):

CleanShot 2022-09-12 at 22 12 20@2x

the method _download_and_tag(...) expects a value for the amount of disc's (multiple), not the true statement of embed_art:

CleanShot 2022-09-12 at 22 13 24@2x

changing it to False solves the problem.

CleanShot 2022-09-12 at 22 17 11@2x
AlexanderChurbanov commented 2 years ago

It works, very THX to U !