|
音悦tai视频解析接口源码分享 超清+高清+流畅[复制链接]
使用方法:
1.把源码用记事本保存,改名字(任意名字)+.php;比如jike.php
2.上传到自己的网站空间根目录下
3.解析视频,自己的域名或者ip比如(https://www.b6y.com/jike.php?url=视频地址)
比如:https://www.b6y.com/jike.php?url=http://v.yinyuetai.com/video/3132856
代码为:
<?php
@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);
//获取MV的ID
preg_match('/[\d]+/',$url,$song_id);
$title=$title[1];
$images=$images[1];
$song_id=$song_id[0];
//解析json
$songurl = "http://www.yinyuetai.com/api/info/get-video-urls?callback=callback |
|