'https://10.71.252.64:4433',
'key' => '25720460',
'secret' => 'qqP7NLcIDwO9MgtYmp8L',
'cameraIndexCode' => 'a73931afd8bd4d1aba883699d65793d2',
'protocol' => 'rtmp',
]
);
$haikang = new HaiKangController();
$result_hk = $haikang->getCamerasUrl();
$arr = explode('/', $result_hk['data']['url']);
$path = end($arr);
// echo $result_hk['data']['url'];
mkdir('/home/video_system/public/files/video/m3u8/' . $path, 0777, true);
$exec = 'nohup /usr/bin/ffmpeg -i ' . $result_hk['data']['url'] . ' -vcodec copy -acodec copy -vbsf h264_mp4toannexb -f hls -hls_flags delete_segments -segment_list_size 10 -hls_list_size 2 /home/video_system/public/files/video/m3u8/' . $path . '/out.m3u8 >/dev/null &';
echo $exec;
echo '
';
$result = shell_exec($exec);
echo '
';
dd(111);
}
}