26.08.2018, 22:52
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);
?>