Setup OrpheusDL on Termux
This guide is made for installing OrpheusDL in Termux, but you can easily setup OrpheusDL on other platforms:
- Windows: https://rentry.co/OrpheusDL_on_Windows
- Android (Termux): https://rentry.co/OrpheusDL_on_Termux
- iOS (iSH terminal): https://rentry.co/OrpheusDL_on_iOS
See the original repository for more configuration settings: https://github.com/OrfiTeam/OrpheusDL
1. Upgrading termux packages and granting file access permission:
- Upgrade termux packages using the following command:
cd $home && apt update -y && apt upgrade -y
- Grant file access permissions to Termux, this is needed to access device storage:
termux-setup-storage
2. Installing required packages:
- Nano is a text editing tool - Git is used to clone repositories - Python is required for OrpheusDL - libjpeg is a Pillow dependency.
Install them with the following command:
pkg install nano git python libjpeg-turbo ffmpeg -y
3. Installing OpheusDL
- Clone OrpheusDL and install its requirements using this command:
git clone https://github.com/OrfiTeam/OrpheusDL.git && cd OrpheusDL && pip install -r requirements.txt
4. Installing OrpheusDL modules
1. Each module corresponds to a specific streaming service. For example installing the Qobuz module will let you download music from www.qobuz.com
2. You can install multiple modules to be able to download from multiple streaming services, but remember to setup an account for each of them.
3. If you want to use your own Deezer and Qobuz premium accounts, read the Extra section
- Make sure you're still inside "/OrpheusDL" directory (if not:
cd OrpheusDL
), then install whichever module you want by executing the corresponding command: - Qobuz (UserID and Token):
git clone https://github.com/thekvt/orpheusdl-qobuz modules/qobuz
Requires UserID and Token. You can get them here: https://rentry.co/firehawk52#qobuz-tokens
- Deezer (ARL):
git clone https://github.com/thekvt/orpheusdl-deezer modules/deezer
Requires ARL. You can get it here: https://rentry.co/firehawk52#deezer-arls
- Tidal:
git clone --recurse-submodules https://github.com/Dniel97/orpheusdl-tidal.git modules/tidal
Requires Username and Password. You can get them from Firehawk telegram group DO NOT CHANGE PASSWORDS
- Jiosaavn:
git clone https://github.com/bunnykek/orpheusdl-jiosaavn modules/jiosaavn
No account required.
5. Setting up accounts and Changing default download directory
- Make sure you're still inside "/OrpheusDL" directory (if not:
cd OrpheusDL
). Run OrpheusDL for the first time to create the settings.json file:python3 orpheus.py
- Open the settings.json file with nano:
nano config/settings.json
- Change the default download directory to something more accessible, like
/storage/emulated/0/Music/OrpheusDL
Example:
- Scroll to the bottom and insert account credentials:
- Qobuz (UserID and Token): insert UserID and Token.
Also insert app_id:579939560
and app_secret:fa31fc13e7a28e7d70bb61e91aa9e178
Example:
- Deezer (ARL): insert ARL.
Also insert bf_secret:g4el58wc0zvf9na1
and track_url_key:jo6aey6haid2Teih
Example:
- Qobuz (UserID and Token): insert UserID and Token.
Once finished editing the settings.json file, you must save and exit by pressing ctrl+x
, then press y
, then press enter
-
- Jiosaavn: no account required, so no need to change anything
- Tidal: You need to "bind" OrpheusDL to your tidal account:
- Make sure you're still inside OrpheusDL (if not:
cd OrpheusDL
) - Execute
python3 orpheus.py [any tidal link]
example:python3 orpheus.py https://listen.tidal.com/track/119743046
- Input
1
to choose TV login - Now it should automatically open the "Bind a device" tidal page, if it doesn't you can copy the link and manually open it in a browser (example bind link: https://link.tidal.com/XXXXX)
- Log in with an account and click on "Bind Device"
- Once finished, you can close the page and go back to termux; you should see OrpheusDL starting to download from tidal
- Make sure you're still inside OrpheusDL (if not:
6. How to use OrpheusDL
- Make sure you're inside "/OrpheusDL" directory, if not execute
cd OrpheusDL
- Execute
python3 orpheus.py [link]
example:python3 orpheus.py https://www.deezer.com/en/track/780474902
- To download multiple albums you can list them
python3 orpheus.py [link1] [link2] [link3]
or you can create a list.txt file inside "\OrpheusDL" directory and paste one link per line, thenpython3 orpheus.py list.txt
- If everything went well, OrpheusDL will start downloading.
- Once finished, you can find downloaded music in the specified download directory in step 4_3.
- ENJOY !!
#Extra
If you want to use your own Qobuz and Deezer accounts, you have 2 options:
- Using the following telegram bot to get ARL, UserID and Token from username and password: https://t.me/account_tools_bot
- Installing the following Qobuz and Deezer modules instead of the corresponding ones listed in step_4:
- Qobuz (username and password):
git clone https://github.com/yarrm80s/orpheusdl-qobuz modules/qobuz
- Deezer (username and password):
git clone https://github.com/uhwot/orpheusdl-deezer modules/deezer
- Qobuz (username and password):
You can only have 1 active module for each streaming service. Example: you cannot install both Deezer (ARL) and Deezer (username and password)
You can update OrpheusDL and modules with the following command (assuming that you've followed the guide and installed OrpheusDL in the home directory of Termux):
cd $home && git -C OrpheusDL pull && cd OrpheusDL/modules && git -C deezer pull; git -C qobuz pull; git -C tidal pull; git -C jiosaavn pull
Credits: Thanks to TheKVT - bunnykek - Dniel97 - OrpheusDL dev team - Firehawk and his team
Support channel: https://t.me/firehawk52official (If you have any questions or need help)
Troubleshooting
- Help! OrpheusDL is only downloading 30 seconds songs from Qobuz and only lossy songs from Deezer!
Your Qobuz token or Deezer ARL expired, get a new one and insert it in settings.json (follow from step 5_2)
- OrpheusDL downloads fine all other songs, exept this specific one!
The most common reason is beacuse that song is region locked. Get an account from the same region or try to see if the song is available on other streaming sites.
- While following the guide I got "access denied/not permitted" error
Make sure you're installing OrpheusDL in the home directory of Termux. Don't omit
cd $home
in step 1. - I cannot find my downloaded music
Make sure you inserted a legit user accessible folder in step 5_3
- Help! Somehow OrpheusDL gets stuck when downloading from Qobuz
You didn't insert app_id and app_secret in step 5 or they could be expired. Get new ones from here
- Help! When trying to download from Deezer, I get
ValueError: Incorrect AES key length (0 bytes)
You didn't insert bf_secret and track_url_key in step 5 or they could be expired. Get new ones from here
- I accidentally started to download a playlist containing 8794 songs! How to stop it!
You can press
ctrl+c
at any time to stop any running script.