抖音去水印小程序服务器端PHP源码
作者:xlnxin发布时间:2022-10-02分类:其他教程浏览:747
<?php
$url = $_GET['url'];
//获取视频url
$url = get_redirect_url($url);
//获取视频ID
$str = dirname($url);
$id = substr($str,strripos($str,'video')+6);
//调用抖音官方API
$str = file_get_contents('https://www.douyin.com/web/api/v2/aweme/iteminfo/?item_ids='.$id);
//将返回的json数据转为数组
$data = json_decode($str,true);
//获取有水印的视频地址
$url = $data['item_list'][0]['video']['play_addr']['url_list'][0];
//将playvm替换为play,从而获取无水印的视频地址
$url = str_replace('playwm','play',$url);
//获取重定向后的真实地址
$video_url = get_redirect_url($url);
echo "<a href='$video_url' target='_blank'>$video_url</a>";
function get_redirect_url($url) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Accept: */*',
'Accept-Encoding: gzip',
'Connection: Keep-Alive',
'User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)'
));
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_NOBODY, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$ret = curl_exec($ch);
curl_close($ch);
preg_match("/Location: (.*?)\r\n/iU",$ret,$location);
return $location[1];
}
相关推荐
- 双击excel打开不显示任何内容,只能在excel里面打开文件解决方法
- 小程序saveVideoToPhotosAlbum安卓手机可以下载MP4苹果手机不能下载解决方法
- 小程序逆向错误之 typeof3 is not a function
- 几种常用接口调用方式
- 小程序e.target.dataset和e.currentTarget.dataset区别
- iis服务器https301跳转重定向到http的方法
- 如何优化wordpress性能提升加载速度
- EXCEL双击不能直接打开EXCEL文件解决办法
- 微信小程序function函数arguments 是什么意思呢?
- 微信小程序、app之间的跳转代码
- 其他教程排行
- 最近发表