├── requirements.txt ├── qdr.py ├── README.md └── config.json /requirements.txt: -------------------------------------------------------------------------------- 1 | mutagen 2 | requests 3 | tqdm 4 | -------------------------------------------------------------------------------- /qdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JemPH/qdr_remastered/HEAD/qdr.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Image](https://i.ibb.co/YbpY49v/KSH8ievvwd.png) 2 | [![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/O4O3D65S3) 3 | 4 | # qdr_remastered 5 | QDR Remastered Version 69. 6 | 7 | ## Features 8 | * Download FLAC and MP3 files from Qobuz 9 | * Remod Version of qobuz-dl-reborn for hash email and password or user_id and user_token. 10 | 11 | ## Installation 12 | #### Termux 13 | 14 | 1. `pkg update && pkg upgrade`
15 | 2. `pkg install git python`
16 | 3. `pip install --upgrade pip`
17 | 4. `git clone https://github.com/JemPH/qdr_remastered.git`
18 | 5. `cd qdr_remastered`
19 | 6. `pip install -r requirements.txt`
20 | 7. `python qdr.py`
21 | 22 | #### Windows 23 | 1. Install Python. 24 | 2. Add Python to System Path 25 | 3. Open Terminal then type `pip install --upgrade pip` 26 | 4. Download the zipped file then extract 27 | 5. goto directory and execute the script. `pip install -r requirements.txt` 28 | 6. Then execute the script `python qdr.py` 29 | -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "creds": { 3 | "email": "", 4 | "password": "", 5 | "user_id": "", 6 | "usertoken": "" 7 | }, 8 | "prefs": { 9 | "quality": 4, 10 | "keep_cover": true, 11 | "cover_size": 4, 12 | "download_dir": "./Downloads", 13 | "embed_cover": true, 14 | "filename_template": "{tracknumber}. {title}", 15 | "tags": { 16 | "album": true, 17 | "albumartist": true, 18 | "artist": true, 19 | "comment": "", 20 | "composer": true, 21 | "discnumber": true, 22 | "disctotal": true, 23 | "copyright": true, 24 | "upc": true, 25 | "date": true, 26 | "genre": true, 27 | "isrc": true, 28 | "label": true, 29 | "performer": true, 30 | "title": true, 31 | "tracknumber": true, 32 | "tracktotal": true, 33 | "url": false, 34 | "year": true 35 | } 36 | } 37 | } --------------------------------------------------------------------------------