Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
$ch = curl_init("http://url-zur-flv-datei);
$fp = fopen ('vid.flv', 'w+');
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
curl_exec($ch);
curl_close($ch);
fclose($fp);
exec("ffmpeg.exe -i video.flv out.avi", $return);