Audio/video stream recording forums
|
Attention Visitor: |
You may have to register or log in before you can post:
|
|
|
Thread Tools | Display Modes |
#1
|
|||
|
|||
www.jango.com: How to record free streaming music from Jango? (http:// .mp3)How to record free streaming music from Jango?
|
#2
|
|||
|
|||
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 |
#3
|
|||
|
|||
Re: www.jango.com: How to record free streaming music from Jango? (http:// .mp3)Neat little Jango.com "trick":
Quote:
|
#4
|
|||
|
|||
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"; |
#5
|
|||
|
|||
Re: www.jango.com: How to record free streaming music from Jango? (http:// .mp3)Sorry, but there is error at line 19.
replace Quote:
Quote:
|
#6
|
|||
|
|||
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.
|
Tags: free, free, http, http, jango, jango, mp3, mp3, music, music, streaming, streaming, streaming music, streaming music, www jango com, www jango com |
Thread Tools | |
Display Modes | |
|
|