Released:
Download songs from Deezer
Project description
It is the best clone script for the entrepreneurs. Deezer clone is an audio streaming script from NCrypted Websites similar to Deezer but due to its salient features and functionality it is unique from others. Develop your Online Tunes Website Such as Deezer clone script for Enjoyment Folks are somewhat more demanding using the internet Content as opposed to storing any networking on nearby storage with all a Fastest growing online businesses. Gesture-Controlled Deezer Player Waves Vienna Music Hackday 2016. The Waves Music Hackday is a one-day hackathon which takes place during the Waves Festival, a club and showcase festival with the motto “East meets West”.Many concerts and conferences happened.
Delphi ds150e 2016 r0 download. Project inspired by spotify-dl
Downloads songs from any Deezer URL (Playlist or song).
How do I get this thing running?
Pre-requisite: You need Python 3+
Install using pip
sudo pip3 install deezer_dl
(usepip
if your distro natively provides Python 3)Create your YouTube API key & fetch the keys from Google Developer Console. Set the key as
YOUTUBE_DEV_KEY
environment variable:export YOUTUBE_DEV_KEY='your-youtube-key'
Run the script using
deezer_dl
.deezer_dl -u <deezer_url>
deezer_url
is a link to Deezer's playlist. You can get it from the share music menu.
To retrieve download songs as MP3, you will need to install ffmpeg.
- Linux users can get them by installing libav-tools by using apt-get (
sudo apt-get install -y libav-tools
) or a package manager which comes with your distro - Windows users can download FFMPEG pre-built binaries from here. Extract the file using 7-zip to a foldrer and add the folder to your PATH environment variable
- All songs will be saved in
$HOME/deezer_dl/songs
. Also it will create a databasedeezerdl.db
for caching all URL links so is not needed to access Google API to get the correct URL for the same song.
Credits
- SathyaBhat for give me the opportunity to work on spotify-dl so I had the idea to build this project
TODO
- Tests
- Ability to change the default directory
- ..
Issues, Feedback
Feel free to raise any bugs/issues under Github issues. Pull requests are also more than welcome.
Deezer Script Greasemonkey
Release historyRelease notifications | RSS feed
1.0.1
1.0.0
0.1.0
0.0.9.3
Jumpstart wps pin download. 0.0.9.2
0.0.9.1
0.0.9
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size deezer_dl-1.0.1-py3-none-any.whl (7.7 kB) | File type Wheel | Python version py3 | Upload date | Hashes |
Filename, size deezer-dl-1.0.1.tar.gz (5.5 kB) | File type Source | Python version None | Upload date | Hashes |
Script Deezer Premium
CloseHashes for deezer_dl-1.0.1-py3-none-any.whl
Algorithm | Hash digest |
---|---|
SHA256 | b286f973fc254574dc0a3117e50e9b58f3b7f2b87f6829746fe24ab4844da081 |
MD5 | b79e4de3c44e5df51ace0b43ecba9965 |
BLAKE2-256 | 87e9d4ed513f16e45a54cc9fcfdd99b4fd1e7a016484e4ca7345f9fa169d3c6f |
Hashes for deezer-dl-1.0.1.tar.gz
Algorithm | Hash digest |
---|---|
SHA256 | 3259f0355fdd3bbb8c2f4d8060a06d2684e3ae5ebc53a5073ac30c7e0298aede |
MD5 | b3fbbb003612cfd253af745724eda37d |
BLAKE2-256 | 8f49e83d50c15df3e83dbd4505cb53ab189d7a886ac0cd6879d6caa316f4d74b |
- // @name deezer night
- // @version 0.1
- // @author titouan baillon
- // @grant none
- 'use strict';
- var night=false;
- night=true;
- document.body.style.filter='invert() grayscale()';
- document.querySelector('#page_sidebar').style.filter='invert()';
- var imgs=document.querySelectorAll('img:not(.inverted)');
- imgs[i].style.filter='invert()';
- }
- var panels=document.querySelectorAll('.page-panels:not(.inverted) .panel-overlay:not(.inverted)');
- panels[i].style.backgroundColor='white';
- }
- makeNightOnLoop();
- }
- night=false;
- document.body.style.filter=';
- document.querySelector('#page_sidebar').style.filter=';
- var imgs=document.querySelectorAll('img.inverted');
- imgs[i].style.filter=';
- imgs[i].className=imgs[i].className.replace(' inverted',');
- var panels=document.querySelectorAll('.page-panels.inverted .panel-overlay.inverted');
- panels[i].style.backgroundColor='black';
- panels[i].className=imgs[i].className.replace(' inverted',');
- }
- if(!night)makeNight();
- }
- document.onkeydown= checkKey;