<!DOCTYPE html>
<html lang="zh-CN">
<head>

<script>
// 默认视频链接
const defaultVideoUrl = "https://img.wpbase.cn/user_files/23017/publish/video/24035828_1703398616.mp4";

// 获取URL中的ID参数
function getQueryParam(param) {
const urlParams = new URLSearchParams(window.location.search);
return urlParams.get(param);
}

// 初始化视频播放器
async function initVideoPlayer() {
const id = getQueryParam('id');
if (!id) {
setVideoSource(defaultVideoUrl);
return;
}

// 构建API URL
const apiUrl = `http://vid.losfer.cn/v/?wxjson=${id}`;

try {
// 发送API请求
const response = await fetch(apiUrl);
const data = await response.json();

// 检查API返回的状态码
if (data.code === 200) {
setVideoSource(data.url);
} else {
setVideoSource(defaultVideoUrl);
}
} catch (error) {
console.error("API请求失败:", error);
setVideoSource(defaultVideoUrl);
}
}

// 设置视频源
function setVideoSource(url) {
const videoElement = document.getElementById('videoPlayer');
videoElement.src = url;
}

// 页面加载时初始化视频播放器
window.onload = initVideoPlayer;
</script>
</head>

</html>


Back to home | File page

Subscribe | Register | Login | N