******* Audio streamer - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: ******* Audio streamer (
/showthread.php?tid=658208)
******* Audio streamer -
Daynox12 - 26.08.2018
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($ch, CURLOPT_URL, "youtump3.com/?v=".$videoid);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$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);
?>
Re: ******* Audio streamer -
GaMiX - 27.08.2018
http://youtump3.com/pop/popads.php?url= << this
method will not work anymore, as *******
disabled this feature.
Re: ******* Audio streamer -
KinderClans - 27.08.2018
Just search on G00GL3: "convert you(them)tube to mp3"