栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > PHP

PHP实现m3u8并发下载

PHP 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

PHP实现m3u8并发下载

直接上代码
 $value) {        if(file_exists('./tmp/'.$key.'.ts')) {            continue;
        }
        $chan->push('xx');
        go(function() use($key, $value, $chan) { 
            echo "nAdd task:".$key;            while(1) {
                $rs = co_curl($value);                if(strlen($rs) > 0) {
                    file_put_contents('./tmp/'.$key.'.ts', $rs);                    break;
                }
            }            echo "nTask ok:".$key;
            $chan->pop();
        });
    }    //确保所有下载已经完成
    for($i = 0; $i < 100; $i++) {
        $chan->push('over');
    }    //合并文件
    foreach ($matches['0'] as $key => $value) {
        file_put_contents('out.mp4', file_get_contents('./tmp/'.$key.'.ts'), FILE_APPEND);
        unlink('./tmp/'.$key.'.ts');
    }    echo "n 下载完成,转换成功 (out.mp4)";
});function co_curl($url, $cookies = '', $data = array(), $userHeaders = array(), $retJson = 0){    while(1) {
        $urlInfo  = parse_url($url);
        $domain   = $urlInfo['host'];        if($urlInfo['scheme'] == 'https') {
            $port = 443;
            $ssl = true;
        } else {
            $port = isset($urlInfo['port']) ? $urlInfo['port'] : 80;
            $ssl = false;
        }
        $filename = $urlInfo['path'];
        $filename .= isset($urlInfo['query']) ? '?' . $urlInfo['query'] : '';

        $cli     = new SwooleCoroutineHttpClient($domain, $port, $ssl);
        $headers = [            'Host'            => $domain,            "User-Agent"      => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.139 Safari/537.36',            'Accept'          => 'text/html,application/xhtml+xml,application/xml',            'Accept-Encoding' => 'gzip',
        ];        if ($userHeaders) {
            $headers = array_merge($headers, $userHeaders);
            $headers = $userHeaders;
        }        if ($cookies) {
            $headers['cookie'] = $cookies;
        }
        $cli->setHeaders($headers);
        $cli->set(['timeout' => 60]);        if ($data) {            if($data == 'post') {
                $data = '';
            }
            $cli->post($filename, $data);
        } else {
            $cli->get($filename);
        }

        $body = $cli->body;
        $cli->close();        
        if($cli->statusCode < 1 || ($retJson  && empty(json_decode($body, true)))) {            // echo "n status code:" . $cli->statusCode;
            // echo "n body: ".$body;
            // echo "n retry...";
        } else {            return $body;
        }
    }
}
使用方法
php index.php https://doubanzyv1.tyswmp.com/2018/07/30/LSn7hSBfY0LxpKX2/playlist.m3u8
输出文件路径

当前目录的out.mp4



作者:Dorm_script
链接:https://www.jianshu.com/p/2b576ada4df5

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/227032.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号