Skip to content

Instantly share code, notes, and snippets.

@apnerve
Created July 13, 2014 21:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save apnerve/8d6bd18a23caf3c49b32 to your computer and use it in GitHub Desktop.
Save apnerve/8d6bd18a23caf3c49b32 to your computer and use it in GitHub Desktop.
download songs from gaana.com
var tracks = [];$('.album_songlist .playcol').map(function(index, track) {tracks[index] = $(track).data('value')});var getURL = function(track_id) {$.post('http://gaana.com//streamprovider/get_stream_data_v1.php', {track_id:track_id}, function(data){console.log($.parseJSON(data).stream_path)})};tracks.map(getURL);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment