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

www.jango.com: How to record free streaming music from Jango? (http:// .mp3)

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

any ANONYMOUS forum user 02-05-2009 12:32 AM

www.jango.com: How to record free streaming music from Jango? (http:// .mp3)


 
How to record free streaming music from Jango?

Stream Recorder 06-08-2009 12:01 AM

Re: www.jango.com: How to record free streaming music from Jango? (http:// .mp3)


 
You can find URLs to MP3 streaming music using freeware URL Snooper. And you can download them with your browser or any download manager.

You may also find some other methods in the following FAQ:
FAQ: How to record/download/capture/save Adobe Flash .FLV video and MP3 audio HTTP stream from embedded player

Replay Media Catcher can perfectly record HTTP .mp3 streaming music from jango.com:
Tutorial: How to record streaming music from Jango with Replay Media Catcher

any ANONYMOUS forum user 10-12-2009 02:28 AM

Re: www.jango.com: How to record free streaming music from Jango? (http:// .mp3)


 
Neat little Jango.com "trick":
Quote:

Hey all...
Was playing around with Jango.com (A Pandora clone, but streams 128kbps MP3s)

I found a neat little trick where you can get any song by any artist without having to wait around for for the actual song to play.
  1. Open Replay Music or Replay Media Catcher's new Record Audio tool (in the tools menu) and make sure they are recording.
  2. Pick an artist and a song by that artist. For this example I will use "The Beatles" and the song "A Day In The Life"
  3. Open your browser; in the URL bar enter a URL in this format: http://www.jango.com/music/<artist>/<title>
  4. Here is the URL for the song I want: http://www.jango.com/music/The Beatles/A Day In The Life
  5. The tool you used should pick up the stream, and voila, you got the song legitimately.

I don't know how long this trick will last, so enjoy it while you can!
-andy.
replay

Eprst_Lalaikin 04-19-2012 04:40 AM

Re: www.jango.com: How to record free streaming music from Jango? (http:// .mp3)


 
I've done this way:
Code:

#!/usr/bin/env perl

# created 18.04.2012
# This obtains "endless" jango "stream" as playlist.m3u file.
# So you can open it in vlc, xmms, e.t.c for listening online and editing.
# And you can give it to wget to download all files at once.
# This requires curl to be installed in your system

# At first, please set up values below, then run script
#where do you want start from:
 $url="http://www.jango.com/music/Adele";
#How many items in playlist you want to generate?
 $num=10;
#I've actually done with 400
#$num=400;

# Getting "sid"
$nres=`curl "$url?c=1" -c cookie`;
if ($nres=~/\(new Image\)\.src \= "http:\/\/a\.jango\.com\/0\/none\/\%252Fmusic\%252FAdele\%253Fc\%253D1\?sid=(.+)"\;/)
{
        print "found sid -> $1\n";
        $sid=$1;
}
else
{
        print "error finding sid\n";
        die;
}
print "--done with finding sid--\n\n";

# Let's start querying jango for the next track in loop
$list="";
open(OUTFILE, ">playlist.m3u") or die "Can't open playlist for write: $!";
$cont="first_time=1";
$suc=0;
for ($c=1;$c<=$num;$c++)
{
        $nres=`curl "www.jango.com/streams/0?sid=$sid&ver=4&suw=0&$cont&cb=1334773329775" -b cookie`;
        $cont="next=1";
        if ($nres=~/{"ver":4,"url":"(http:.+)"}/)
        {
                print"$c  -> $1\n";
                $list=$list . "$1.mp3\n";
                $suc++;
        }
        else
        {
                print "$c -> error getting item!";
        }

}
print OUTFILE $list;
print "\nObtained $suc of $num items\n";


Eprst_Lalaikin 08-07-2012 04:38 PM

Re: www.jango.com: How to record free streaming music from Jango? (http:// .mp3)


 
Sorry, but there is error at line 19.
replace
Quote:

if ($nres=~/\(new Image\)\.src \= "http:\/\/a\.jango\.com\/0\/none\/\%252Fmusic\%252FAdele\%253Fc\%253D1\?sid=(.+)"\;/)
with
Quote:

if ($nres=~/\?sid=(.+)"\;/)
or it will work with one given url (http://www.jango.com/music/Adele) only

higdeeng 11-21-2016 04:22 AM

Re: www.jango.com: How to record free streaming music from Jango? (http:// .mp3)


 
Have you tried Allavsoft? It is good to download Jango Audio to MP3, WAV, AAC, M4A, FLAC, WMA, etc.


All times are GMT -6. The time now is 06:55 PM.