22 lines
830 B
PHP
Executable File
22 lines
830 B
PHP
Executable File
<?php
|
|
|
|
if(!defined('IN_DISCUZ')) {
|
|
exit('Access Denied');
|
|
}
|
|
|
|
$checkurl = array('v.qq.com/x/page/','v.qq.com/x/cover/');
|
|
|
|
function media_qq($url, $width, $height) {
|
|
if(preg_match("/https?:\/\/v.qq.com\/x\/page\/([^\/]+)(.html|)/i", $url, $matches)) {
|
|
$vid = explode(".html", $matches[1]);
|
|
$flv = 'https://imgcache.qq.com/tencentvideo_v1/playerv3/TPout.swf?vid='.$vid[0];
|
|
$iframe = 'https://v.qq.com/txp/iframe/player.html?vid='.$vid[0];
|
|
$imgurl = '';
|
|
} else if(preg_match("/https?:\/\/v.qq.com\/x\/cover\/([^\/]+)\/([^\/]+)(.html|)/i", $url, $matches)) {
|
|
$vid = explode(".html", $matches[2]);
|
|
$flv = 'https://imgcache.qq.com/tencentvideo_v1/playerv3/TPout.swf?vid='.$vid[0];
|
|
$iframe = 'https://v.qq.com/txp/iframe/player.html?vid='.$vid[0];
|
|
$imgurl = '';
|
|
}
|
|
return array($flv, $iframe, $url, $imgurl);
|
|
} |