******* Audio streamer
#1

I have this php code that converts ******* video into mp3, but when you place the ******* link it does not play anything, I think it is the page does not work, is this someone knows another web to convert to mp3?

PHP код:
<?php
$videoid 
$_GET['videoid'];
$ch curl_init();
curl_setopt($chCURLOPT_URL"youtump3.com/?v=".$videoid);
curl_setopt($chCURLOPT_HEADERfalse);
curl_setopt($chCURLOPT_RETURNTRANSFERtrue);
$infolink curl_exec($ch);
curl_close($ch);
 
$s strpos($infolink"http://youtump3.com/pop/popads.php?url=");
$e strpos($infolink"\">"$s 39);
$r substr($infolink$s 39$e $s 39);
 
header("Content-Type: audio/mpeg");
header("Content-Disposition: attachment; filename=".$r);
readfile($r);
?>
Reply


Messages In This Thread
******* Audio streamer - by Daynox12 - 26.08.2018, 22:52
Re: ******* Audio streamer - by GaMiX - 27.08.2018, 05:46
Re: ******* Audio streamer - by KinderClans - 27.08.2018, 08:03

Forum Jump:


Users browsing this thread: 1 Guest(s)