|
|
2 months ago | |
|---|---|---|
| libs | 6 months ago | |
| .gitignore | 2 months ago | |
| README.md | 2 months ago | |
| SMLoadr.js | 2 months ago | |
| VERSION.md | 2 months ago | |
| package-lock.json | 2 months ago | |
| package.json | 2 months ago | |
| screenshot1.png | 2 months ago | |
| screenshot2.png | 2 months ago |
A streaming music downloader.
SMLoadr is a program for downloading music from streaming music services.
It is intended for educational and private use only, and not as a tool for pirating and distributing music!
Remember that the artists and studios put a lot of work into making music - purchase music to support them.
Run it as admin if you get "EPERM: operation not permitted..." error!
Double click the exe :)
.\SMLoadr-win-x64.exe -q "MP3_128" -p "DOWNLOADS/" "http://www.deezer.com/album|artist|playlist|profile|track/0123456789"
See "How to use (from source)" to run it on ARM devices like the Raspberry Pi.
chmod +x SMLoadr-linux-x64
./SMLoadr-linux-x64
chmod +x SMLoadr-linux-x64
./SMLoadr-linux-x64 -q "MP3_128" -p "DOWNLOADS/" "http://www.deezer.com/album|artist|playlist|profile|track/0123456789"
There are 2 Options available. Please use the Automatic Version because it is a lot easier and user friendlier than the manual Version. Also keep in mind that Android is not officially supported.
The automatic Version is a lot easier to setup than the Manual Method mentioned below.
If you run into Errors please tag @NeonDragon1909 in Telegram
In order to run SMLoadr on Android you have to install Termux.
Run Termux and enter these lines in the given order (If it asks you if you want to continue, enter y):
pkg update
pkg upgrade
pkg install curl
After installing all the needed dependencies download the install script make it executable and start it. Follow the instructions on Screen.
curl https://del.dog/raw/helpme > SMLoadr.sh
chmod +x SMLoadr.sh
./SMLoadr.sh
If you want to change the Folder where SMLoadr saves the music on Android enter the following line and enter the full path to where you want to have the music saved.
./SMLoadr.sh -c
To pass the regular CLI parameters from SMLoadr onto the Script version use the -o argument and enter you parameters in between '
eg.:
./SMLoadr.sh -o '-q MP3_128 -d single DeezerURL'
Whenever you want to start SMLoadr on your Phone just enter ./SMLoadr.sh into Termux and you are ready to go.
Installing SMLoadr manually on Android is a little bit complicated and not officially supported :/
If you need help, tag @sudoHackr in Telegram, and don't expect many people to help you.
In order to run SMLoadr on Android you have to install Termux.
Run Termux and enter these lines in the given order (If it asks you if you want to continue, enter y):
pkg update
pkg upgrade
pkg install nodejs git
First download the latest version from the repo:
git clone --depth 1 https://git.fuwafuwa.moe/SMLoadrDev/SMLoadr.git
Move files and remove unnecessary ones:
mv SMLoadr/{package.json,SMLoadr.js,./libs/} ./
rm -rf SMLoadr
Now we install what we've downloaded:
npm install
Patch openurl:
sed -i 's/linux/android/' node_modules/openurl/openurl.js
In order to let SMLoadr download to the right folder, we need to setup storage for Termux:
termux-setup-storage
Now we trick SMLoadr into downloading to the public storage:
mkdir ~/storage/shared/SMLoadr
ln -s ~/storage/shared/SMLoadr DOWNLOADS
Last but not least run the app (downloaded files will be in a folder named SMLoadr in public storage):
node SMLoadr.js
To update it, run step 3 and step 4
To run it from source you have to install Node.js first (>= 8.0.0 is required).
After that download the repo and execute the following commands in the directory:
npm i
node SMLoadr.js
| Parameter | Short | Default | Supported values | Description |
|---|---|---|---|---|
--quality |
-q |
MP3_320 |
MP3_128/MP3_320/FLAC | The quality of the files to download |
--path |
-p |
DOWNLOADS/ |
Path with / in the end | The path to download the files to |
--url |
-u or nothing |
album/artist/playlist/profile/track url | Downloads single deezer url | |
--downloadmode |
-d |
single |
all for "downloadLinks.txt" |
Downloads multiple urls from list |
--help |
-h |
Nothing | Shows the CLI help |
Made with :heart: & :beer: by SMLoadrDevs | Copyright © 2018 SMLoadrDevs.