Playing .m3u8 video using php curl
问题 I'm attempting to play a .m3u8 video using a php curl proxy. The following code seems to work, although it only returns the video #EXTM3U information but does not play the video. Code: <?php //....proxy info $auth = 'username:password'; $proxy_ip = '1.2.3.4.5'; $proxy_port = 8080; $path = $_GET['link']; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $path); //curl_setopt($ch, CURLOPT_HEADER, true); curl_setopt($ch, CURLOPT_PROXYPORT, $proxy_port); curl_setopt($ch, CURLOPT_PROXYTYPE, 'HTTP')