I want download this file
http://193.111.141.206:8000/live/mirko/mirko/22.m3u8
and want to save on server.
I have this php script:
<?php
$ts1 = http://193.111.141.206:8000/live/mirko/mirko/22.m3u8;
file_put_contents("stream.m3u8", fopen($ts1, 'r'));
?>
I get this error
Warning: fopen( http://193.111.141.206:8000/live/mirko/mirko/22.m3u8): failed to open stream: Connection timed out in /home/.../download.php on line 25
Manualy I can open this file, but php says Connection timed out... Anybody know a solution?