php获取腾讯视频信息,云水日记-PHP实现腾讯视频解析源码

PHP实现腾讯视频解析源码,只能解析非VIP的视频,否则只能看3分钟,仅供考学习使用....

//腾讯视频解析

$vids = isset($_GET['vids']) ? $_GET['vids'] : "";

if ($vids == '') {

die('请勿非法尝试');

}

$res     = file_get_contents("http://vv.video.qq.com/getinfo?vids={$vids}&platform=101001&charge=0&otype=Json&defn=shd");

$search  = ["QZOutputJson=", ";"];

$replace = ["", ""];

$res     = str_replace($search, $replace, $res);

$res     = json_decode($res);

$obj     = $res->vl->vi;

$obj     = $obj[0];

$obj     = $obj->ul->ui;

$obj     = $obj[0];

$URI     = $obj->url;

// $URI     = (($res->vl->vi)[0]->ul->ui)[0]->url;

$URI2    = "http://vv.video.qq.com/getkey?format=2&otype=json&vt=150&vid={$vids}&ran=0\%2E9477521511726081&charge=0&filename={$vids}.mp4&platform=11";

$res      = file_get_contents($URI2);

$search   = ["QZOutputJson=", ";"];

$replace  = ["", ""];

$res      = str_replace($search, $replace, $res);

$res      = json_decode($res);

$key      = $res->key;

$filename = $res->filename;

$URI      = $URI . $filename . '?vkey=' . $key;

echo $URI;

die;

?>

你可能感兴趣的:(php获取腾讯视频信息)