分享一个知乎视频解析源码

咔咔猪
2023-03-30 / 0 评论 / 39 阅读

视频地址

https://www.zhihu.com/zvideo/1612964713997950976

取视频id:

1612964711208558592

接口地址:

https://lens.zhihu.com/api/v4/videos/1612964711208558592
<?php
$vid = $_GET['vid'];
$api = "https://lens.zhihu.com/api/v4/videos/".$vid."";
$html = file_get_contents($api);
$json = json_decode($html);
$url = $json->playlist->LD->play_url;
header("Location: {$url}");
?>

video标签播放

<video src="index.php?vid=1612964711208558592" autoplay="autoplay" controls="controls" >
您的浏览器不支持 video 标签。
</video>

看下面效果

0

评论 (0)

取消