Created
May 17, 2024 17:15
-
-
Save mortalis13/fc53d850601942607fc3edf6ab8892b9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
deemix.exe | |
-------------- | |
-p . - download to current folder | |
-b 320 - download mp3 320 kbps | |
-b flac - download flac | |
config.json | |
-------------- | |
"maxBitrate": "3" | |
(from deezer library) | |
class TrackFormats(): | |
FLAC = 9 | |
MP3_320 = 3 | |
MP3_128 = 1 | |
MP4_RA3 = 15 | |
MP4_RA2 = 14 | |
MP4_RA1 = 13 | |
DEFAULT = 8 | |
LOCAL = 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment