Audio/video stream recording forums (http://stream-recorder.com/forum/index.php)
-   Audio stream recording (http://stream-recorder.com/forum/forumdisplay.php?f=5)
-   -  

Record/Capture/Download/Rip/Save Music from Deezer

(http://stream-recorder.com/forum/showthread.php?t=2023)

cw2k 12-13-2015 09:51 PM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Oh dear :eek: this 'worm-code' is a maze for the eyes.

Be smart and make it more beautiful with:

http://jsbeautifier.org

That's how it'll look parse & formated:
Code:

{
    "id": 11898198,
    "title": "A Head Full Of Dreams",
    "upc": "825646487059",
    "link": "http:\/\/www.deezer.com\/album\/11898198",
    "share": "http:\/\/www.deezer.com\/album\/11898198?utm_source=deezer&utm_content=album-11898198&utm_term=0_1450066636&utm_medium=web",
    "cover": "http:\/\/api.deezer.com\/album\/11898198\/image",
    "cover_small": "http:\/\/e-cdn-images.deezer.com\/images\/cover\/b8ead91b2156f1e69ebd26020221a24b\/56x56-000000-80-0-0.jpg",
    "cover_medium": "http:\/\/e-cdn-images.deezer.com\/images\/cover\/b8ead91b2156f1e69ebd26020221a24b\/250x250-000000-80-0-0.jpg",
    "cover_big": "http:\/\/e-cdn-images.deezer.com\/images\/cover\/b8ead91b2156f1e69ebd26020221a24b\/500x500-000000-80-0-0.jpg",
    "genre_id": 85,
    "genres": {
        "data": [{
            "id": 85,
            "name": "Alternative",
            "picture": "http:\/\/api.deezer.com\/genre\/85\/image",
            "type": "genre"
        }]
....

^-and on the site it'll also gonna have syntax highlighting.
Like this JSON is gonna be more fun
:D

... or talking about chrome. Another simple approach is this.
1. Copy the JSON code
2. Open the console (shift+ctrl+i) and type a=
3. Paste the code so it may look like this
Code:

a={
    "id": 11898198,
    "title": "A Head Fu...
...rack"
        }]
    }
}

4. Now you can browser the tree.:)

However first maybe the best + paste the code in a nice code editor like Notepad++ (Eclipse, Netbeans or whatever you like) select 'JSON' as language so you get highlighting & U can now also open/close the tree as well.

an07her 12-14-2015 12:54 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Yes, I don't want the streaming links. Source files should be the same.
And FLAC itself doesn't have encryption, and if links are visible I can access that and download it.

But I still don't understand how to get that FULL_PATH_ORIGIN.

I guess it's not possible, since you would implement it probably if it was.
Hope I'm not annoying, just trying to understand what happens if you can directly access FLAC without any tokens/sessionid.

Sparx 12-14-2015 02:53 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Quote:

Originally Posted by an07her (Post 81644)
Yes, I don't want the streaming links. Source files should be the same.
And FLAC itself doesn't have encryption, and if links are visible I can access that and download it.

But I still don't understand how to get that FULL_PATH_ORIGIN.

I guess it's not possible, since you would implement it probably if it was.
Hope I'm not annoying, just trying to understand what happens if you can directly access FLAC without any tokens/sessionid.

The streaming link is exactly what you want, if you try to download the flac file.
But the link is not visible, except you sniff it in you network while streaming flac.

The FULL_PATH_ORIGIN variable is a path on their filesystem. I doubt you can access that.
To get it, you have to call the JavaScript API, as I told you before.
You need to do a post to this url:
Code:

http://www.deezer.com/ajax/gw-light.php?api_version=1.0&api_token=TOKEN&input=3
For the token you can go to deezer.com and look for checkForm in the source code.
Your post data has to look like this:
Code:

[{"method":"song.getListData","params":{"sng_ids":[SONGID]}}]

jonaaa 12-14-2015 03:04 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Quote:

Originally Posted by cw2k (Post 81639)
Oh dear :eek: this 'worm-code' is a maze for the eyes.

Be smart and make it more beautiful with:

http://jsbeautifier.org

That's how it'll look parse & formated:
Code:

{
    "id": 11898198,
    "title": "A Head Full Of Dreams",
    "upc": "825646487059",
    "link": "http:\/\/www.deezer.com\/album\/11898198",
    "share": "http:\/\/www.deezer.com\/album\/11898198?utm_source=deezer&utm_content=album-11898198&utm_term=0_1450066636&utm_medium=web",
    "cover": "http:\/\/api.deezer.com\/album\/11898198\/image",
    "cover_small": "http:\/\/e-cdn-images.deezer.com\/images\/cover\/b8ead91b2156f1e69ebd26020221a24b\/56x56-000000-80-0-0.jpg",
    "cover_medium": "http:\/\/e-cdn-images.deezer.com\/images\/cover\/b8ead91b2156f1e69ebd26020221a24b\/250x250-000000-80-0-0.jpg",
    "cover_big": "http:\/\/e-cdn-images.deezer.com\/images\/cover\/b8ead91b2156f1e69ebd26020221a24b\/500x500-000000-80-0-0.jpg",
    "genre_id": 85,
    "genres": {
        "data": [{
            "id": 85,
            "name": "Alternative",
            "picture": "http:\/\/api.deezer.com\/genre\/85\/image",
            "type": "genre"
        }]
....

^-and on the site it'll also gonna have syntax highlighting.
Like this JSON is gonna be more fun
:D

... or talking about chrome. Another simple approach is this.
1. Copy the JSON code
2. Open the console (shift+ctrl+i) and type a=
3. Paste the code so it may look like this
Code:

a={
    "id": 11898198,
    "title": "A Head Fu...
...rack"
        }]
    }
}

4. Now you can browser the tree.:)

However first maybe the best + paste the code in a nice code editor like Notepad++ (Eclipse, Netbeans or whatever you like) select 'JSON' as language so you get highlighting & U can now also open/close the tree as well.

Wow, thanks... really nice but Notepad++ can do this too right?

Lost in Translation 12-26-2015 02:47 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Just registered to say thanks Sparx for your hard work :) program works perfectly.I have one questions ,probably a stupid one (I have no idea how these things work )is it safe to use ? could deezer know we are downloading the songs ?

jonaaa 12-26-2015 10:52 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Quote:

Originally Posted by Lost in Translation (Post 81903)
Just registered to say thanks Sparx for your hard work :) program works perfectly.I have one questions ,probably a stupid one (I have no idea how these things work )is it safe to use ? could deezer know we are downloading the songs ?

I'm using this for 2 months already, no problems... dont worry about this, deezer can't touch you, they can just "patch" this download method, they can't do anything more than that...

seanumuc 12-30-2015 06:11 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Anyone having issues downloading today?

tzshusqs 12-30-2015 06:13 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Hello guys, long time lurker, first time poster: I was wondering if the Deezer downloader has stopped working for anyone else?

Symptoms - attempting to downloaded checkmarked music causes DOWNLOADING to appear but 0kbps download and progress bar doesn't move. After a while the program becomes IDLE again. No music in folder, I disabled antivirus, made sure it was unblocked, rebooted computer, updated java, redownloaded it - nothing seems to make it work again (worked perfectly before). ;~;

I've tried on a second computer and it doesn't work either. Opened deezer in a web browser and it opens up just fine. I've even tried running it under a VPN and it doesn't work.

And at the same time, I can't rip from rdio anymore because they've closed.

I was using Deezer and Rdio to download hard to find spotify tracks, is the only option left to soundcard record? I've tried to dl the mobile links from the site in the past as it plays but they're distorted beyond recognition ;_;

seanumuc 12-30-2015 06:23 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
I'm pretty certain it's been patched.

tzshusqs 12-30-2015 06:26 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Quote:

Originally Posted by seanumuc (Post 81945)
I'm pretty certain it's been patched.

Maybe manual dl still works? They still have the 320kbps mp3 references in the source code...

wthreex 12-30-2015 06:45 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
problem with downloading! nothing happend :(

damagost 12-30-2015 07:52 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
It doesn't work Deezer Downloader

jonaaa 12-30-2015 08:39 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Well, the downloader is now patched.

gbgb 12-30-2015 09:16 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
How can i get the patched version :-)

Sparx 12-30-2015 09:40 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
It looks like they only changed the server URLs.

Try this quick fix: http://www.share-online.biz/dl/G5ELJ60OJ4T

jonaaa 12-30-2015 10:00 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Quote:

Originally Posted by Sparx (Post 81952)
It looks like they only changed the server URLs.

Try this quick fix: http://www.share-online.biz/dl/G5ELJ60OJ4T

Confirmed, working fine here, great job!

RocknRolla 12-30-2015 10:16 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Quote:

Originally Posted by Sparx (Post 81952)
It looks like they only changed the server URLs.

Try this quick fix: http://www.share-online.biz/dl/G5ELJ60OJ4T

You're the man!

seanumuc 12-30-2015 10:25 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Thank you!

cw2k 12-30-2015 10:42 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Quote:

Originally Posted by Sparx (Post 81952)

That stupid share-online is not working (countdown starts with 0:00 and Captcha is not shown).

PLEASE could someone upload this somewhere else like
http://mega.nz
http://solidfiles.com
http://sendspace.com
dropbox or google drive
or get some 'real' and free webspace with ftp & php at bplaced.net.


I can't see why ppl still using uploaded and share-online while there are so many other free and much more user friendly OCHs. (<- assuming you've all setup you're Ad blocker)

Sparx 12-30-2015 10:55 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
https://mega.nz/#!CMFyTZYa!msPsRs_sC...jVZw9L0Y ScBc

wthreex 12-30-2015 11:20 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
thanks sparx!!:)

CoolDawq 12-30-2015 11:39 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Thank you very much, Sparx

cw2k 12-30-2015 12:21 PM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Wow cool man - thanks a lot.
So let's make a nice release post for it. Let me do some draft:
Quote:

Originally Posted by Sparx (Post 80037)
Version 3.1 of my Deezer Download is ready.


Changelog:
3.1
  • changed the server URLs
3.0
  • New GUI
  • New tagging library with more ID3 tags
  • Bug fixes
  • New features

Features:
Download:
DeezerDownloader3.1.jar
files.planet-dl.org/cw2k/tmp/DeezerDownloader3.1.jar

mirror on mega.nz

Edit:

~ Fix for Synthetica Unregistered ~

So no more 'Synthetica - Unregistered Evaluation Copy!' at the bottom of the window.
@spax: I guess you can may also easily integrate the modded Synthetica class in the DZL-sources.:D


Edit #2:
...and there it is - the

All-one-Exe

//dropbox.com/s/09rjl4vasvubk8w/DeezerDownloader3.1.exe.7z?dl=1

^- one exe with a nice icon - handy to use and nicer to look

CHJ85 12-30-2015 01:42 PM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
App stopped working today.
Please update it.

Sparx 12-30-2015 02:31 PM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Quote:

Originally Posted by CHJ85 (Post 81961)
App stopped working today.
Please update it.

Did you even read the thread?
It's literally one post above yours.

gbgb 12-30-2015 04:09 PM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Many Thanx!!!

an07her 12-30-2015 04:19 PM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Just when I thought we lost it forever.
That was fast! You mate are awesome. Many thanks

o0o 12-30-2015 05:08 PM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Because only he writes the name of one artist in the tracks when in fact it has been created by more than one? I think that the symbols , / does not interpret the program, the symbol & if interpreted, Sparx, can fix it please?, Thanks.

o0o 12-30-2015 05:46 PM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
This is what I mean, for instance in the album 7813461 only put the name of an artist on the mp3, should put 2 names of artists on the track and on the tag.

an07her 12-31-2015 12:19 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
cw2k, thanks for synthetica fix.
I'm also OCD about unregistered/trials, etc...

Quote:

Originally Posted by o0o (Post 81966)
This is what I mean, for instance in the album 7813461 only put the name of an artist on the mp3, should put 2 names of artists on the track and on the tag.

Yes, this will be helpful if it's possible.

tzshusqs 12-31-2015 02:04 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Thankyou very much Sparx :)

Sparx 12-31-2015 04:00 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Quote:

Originally Posted by cw2k (Post 81960)
@spax: I guess you can may also easily integrate the modded Synthetica class in the DZL-sources.:D

Can you send me the modified synthetica.jar? I have no luck with recompiling it.
Btw: Is your system set to german? If not there might be a problem in my implementation :D
Quote:

Originally Posted by o0o (Post 81965)
Because only he writes the name of one artist in the tracks when in fact it has been created by more than one? I think that the symbols , / does not interpret the program, the symbol & if interpreted, Sparx, can fix it please?, Thanks.

I'll add that in the next days.

rafaelmolive 12-31-2015 04:39 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Thanks Sparx, for your hard work in this wonderful program, that is Deezer Downloader... Do you know what's happening with the program??? I'm trying early downloading an album and i'm not achieving... No one track is downloaded. Can you help me??? I've installed new version of program, that is 3.1. What i do with this file called "Synthetica"? I Keep it in my PC? Please, answer me, cause i'll wait an answer of you...

jonaaa 12-31-2015 05:06 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Quote:

Originally Posted by rafaelmolive (Post 81980)
Thanks Sparx, for your hard work in this wonderful program, that is Deezer Downloader... Do you know what's happening with the program??? I'm trying early downloading an album and i'm not achieving... No one track is downloaded. Can you help me??? I've installed new version of program, that is 3.1. What i do with this file called "Synthetica"? I Keep it in my PC? Please, answer me, cause i'll wait an answer of you...

It's working fine here, ignore the "Synthetica" message...

jonaaa 12-31-2015 05:09 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Some proofs:




rafaelmolive 12-31-2015 05:10 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Thanks Jonaaa, so, i'll ignore the message of Synthetica. Good download for all people and have a Happy New Year!!!

jonaaa 12-31-2015 05:12 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Quote:

Originally Posted by rafaelmolive (Post 81983)
Thanks Jonaaa, so, i'll ignore the message of Synthetica. Good download for all people and have a Happy New Year!!!

Thanks, for you too!

Luis141080 12-31-2015 05:48 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
someone does it work? my not let me download

an07her 12-31-2015 05:53 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
One little bug report:
some tracks show year as 0000-00 when downloaded, while release date is ok in the API.

Example: http://api.deezer.com/album/6064738

Can this be fixed?:)

jonaaa 12-31-2015 07:29 AM

Re: Record/Capture/Download/Rip/Save Music from Deezer


 
Quote:

Originally Posted by an07her (Post 81986)
One little bug report:
some tracks show year as 0000-00 when downloaded, while release date is ok in the API.

Example: http://api.deezer.com/album/6064738

Can this be fixed?:)

I use my own tag script, i get all my tags from iTunes (with MP3Tag) so, i don't have any problems...


All times are GMT -6. The time now is 08:13 PM.