<?php
error_reporting(0);
$id = isset($_GET['id'])?$_GET['id']:'jncqxw';
$n = [
//德州
"dzxwzh" => [179,1], //德州新闻综合 https://iapp.dztv.tv/share/dHZsLTE3OS0x.html
"dzjjsh" => [179,2], //德州经济生活 https://iapp.dztv.tv/share/dHZsLTE3OS0y.html
"dztw" => [179,9], //德州图文 https://iapp.dztv.tv/share/dHZsLTE3OS05.html
//威海
"whxwzh" => [157,1], //威海新闻综合 https://iapp.weihai.tv/share/dHZsLTE1Ny0x.html
"whdssh" => [157,3], //威海都市生活 https://iapp.weihai.tv/share/dHZsLTE1Ny0z.html
"whhy" => [157,12], //威海海洋 https://iapp.weihai.tv/share/dHZsLTE1Ny0xMg.html
"whhczh" => [213,5], //威海环翠综合 https://iapp.whhccm.cn/share/dHZsLTIxMy01.html
];
$d = json_decode(file_get_contents("https://app.litenews.cn/v1/app/play/tv/live?orgid=".$n[$id][0]),1);
foreach($d["data"] as $v) {
if($n[$id][1] == $v["id"])
$stream = $v["stream"];
break;
}
header("Content-Type: application/vnd.apple.mpegurl");
header('location:'.$stream);
//echo $stream;
?>
|