Alqoe

Script Rename Link Download Soundcloud

Oct 1st, 2014
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.63 KB | None | 0 0
  1. <?php
  2. include 'func.php';
  3. $id=$_GET['id'];
  4. $grab=json_decode(ngegrab('http://api.soundcloud.com/tracks/'.$id.'.json?client_id=c435ec96ae345d5ce32496d339fc291d'));
  5. $dl=''.getlinkdl($id).'';
  6. $nama=$grab->title;
  7. header("Content-Type: audio/mpeg");
  8. header('Content-Disposition:attachment; filename="'.$nama.'.mp3"');
  9. readfile("$dl");
  10. header("Content-Transfer-Encoding:binary");
  11. ?>
  12.  
  13. ------------------------------------------------------
  14. untuk link download :
  15.  
  16. <a href="download/'.$id.'.mp3">Download</a>
  17.  
  18. ------------------------------------------------------
  19. kode untuk .htaccess
  20.  
  21. RewriteRule ^download/(.+)\.mp3$ load.php?id=$1 [L]
Add Comment
Please, Sign In to add comment