• 抖音无水印视频解析php源码


    [Code]

    <?php
    /*
    雪自纯阳落白衫:https://www.cnblogs.com/L1079991001/
    */
    
    if (!empty($_GET['url'])) {
        $url = $_GET['url'];
        $str = GET($url, 1);
        preg_match("/video_id=(.*?)&/i", $str, $arr);
        if (count($arr) >= 1) {
            $str = GET("https://aweme.snssdk.com/aweme/v1/play/?video_id=".$arr[1]."&line=0", 0);
            preg_match('#<a href="(.*?)">#', $str, $arr2);
            if (count($arr2) >= 1) {
                $arr3 = explode("//", $arr2[1]);
                if (!empty($arr3)) {
                    //header("content-type:video/mp4");
                    //header("Location: "."https://".$arr3[1]);
                    if (!empty($_GET['way']) && $_GET['way'] == "txt") {
                        exit("https://".$arr3[1]);
                    }
                    elseif(!empty($_GET['way']) && $_GET['way'] == "json") { 
                        $aray = ['code' =>200, 'msg' =>'success', 'url' =>"https://".$arr3[1]];
                        exit(json_encode($aray, false));
                    } else { //跳转到改地址播放
                        header("Location: "."https://".$arr3[1]);
                    }
    
                }
    
            }
        }
    
    } else {
        echo "lhr0321";
    }
    
    function Get($url, $foll = 0) {
        //初始化 
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url); //访问的url
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); //完全静默
        curl_setopt($ch, CURLOPT_HEADER, false);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); //忽略https       
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); //忽略https     
        curl_setopt($ch, CURLOPT_HTTPHEADER, ["user-agent: Mozilla/5.0 (iPhone; CPU iPhone OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A5376e Safari/8536.25"]); //UA
        curl_setopt($ch, CURLOPT_FOLLOWLOCATION, $foll); //默认为$foll=0,大概意思就是对照模块网页访问的禁止301 302 跳转。
        $output = curl_exec($ch); //获取内容
        curl_close($ch); //关闭
        return $output; //返回
    }
    /*
    雪自纯阳落白衫:https://www.cnblogs.com/L1079991001/
    */
    ?>
    
  • 相关阅读:
    在Linux CentOS 6.6上安装Python 2.7.9
    CentOS yum 安装LAMP PHP5.4版本
    yum 安装php环境
    如何在Eclipse配置PyDev插件
    vagrant使用小结
    虚拟机下安装CentOS6.5系统教程
    python
    library cahce pin
    利用分析函数删除重复数据
    组合索引避免索引扫描后在过滤
  • 原文地址:https://www.cnblogs.com/L1079991001/p/10459615.html
Copyright © 2020-2023  润新知