<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>视频播放器</title>
</head>
<body>
<?php
// 默认视频链接
$defaultVideoUrl = "https://img.wpbase.cn/user_files/23017/publish/video/24035828_1703398616.mp4";
// 获取ID参数并过滤
$id = filter_input(INPUT_GET, 'id', FILTER_SANITIZE_STRING);
if (!$id) {
$redirectUrl = $defaultVideoUrl;
} else {
// 构建API URL
$apiUrl = "http://vid.losfer.cn/v/?wxjson=" . urlencode($id);
// 发送API请求
$response = @file_get_contents($apiUrl);
if ($response === FALSE) {
$redirectUrl = $defaultVideoUrl;
} else {
// 解析JSON数据
$data = json_decode($response, true);
if (json_last_error() !== JSON_ERROR_NONE || !isset($data['code'])) {
$redirectUrl = $defaultVideoUrl;
} else {
// 根据API返回的状态码进行重定向
if ($data['code'] !== 200) {
$redirectUrl = $defaultVideoUrl;
} else {
$redirectUrl = $data['url'];
}
}
}
}
?>
<video width controls>
<source src="<?php echo $redirectUrl; ?>" type="video/mp4">
您的浏览器不支持视频播放。
</video>
</body>
</html>
Back to home |
File page
Subscribe |
Register |
Login
| N