音悦Tai,主要提供MTV在线播放功能,官网http://www.yinyuetai.com/ ,有时我们需要下载音悦台的MTV的时候,按照官方的下载很多限制,这儿使用PHP直接解析出音悦台的MTV源地址,可以直接下载!音悦台MTV视频真实地址PHP解析源码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| @header('Content-type: text/html;charset=UTF-8'); $url=isset($_GET['url'])?trim($_GET['url']):'';
$time=$_SERVER['REQUEST_TIME']; $content = file_get_contents($url);
preg_match('/property="og:title"[\s]+content="([^"]*)".*?>/i',$content,$title);
preg_match('/property="og:image" content="([^"]*)".*?>/',$content,$images);
preg_match('/[\d]+/',$url,$song_id); $title=$title[1]; $images=$images[1]; $song_id=$song_id[0];
$songurl = "http://www.yinyuetai.com/api/info/get-video-urls?callback=callback&videoId=".$song_id."&_=".$time; $data = file_get_contents($songurl); if (strpos($data, "callback") !== false){ $lpos = strpos($data, "("); $rpos = strrpos($data, ")"); $data = substr($data, $lpos + 1, $rpos - $lpos -1); } $json= json_decode($data,true); echo $title."<br/>"; echo "流畅地址:".$json['hcVideoUrl']."<br/>"; echo "高清地址:".$json['hdVideoUrl']."<br/>"; echo "超清地址:".$json['heVideoUrl']."<br/>"; echo "<img src=\"".$images."\"/>";
|
看看解析效果