|
- <?php
- $ch = curl_init('https://player.polyv.net/service/lts3/enc_46898d5c37_1791887.json');
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
- curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
- $data = curl_exec($ch);
- curl_close($ch);
- $d = json_decode($data);
- $str = $d->body;
- $key='polyvlive8765432';
- $iv='1111000011110010';
- $data = base64_decode(openssl_decrypt(hex2bin($str),'AES-128-CBC',$key,OPENSSL_RAW_DATA,$iv));
- $playurl = json_decode($data) -> m3u8Url;
- header('Location:'.$playurl);
- //echo $playurl;
- ?>
复制代码
|
|