Stream video i stedet for at downloade?
Hejsa,Hvordan får jeg følgende kode til at streame en video, i stedet for at downloade?
Hi,
This code make a "download prompt".
Is it possible to make the videos stream directly instead?
// Stream the movie
$filename = "/home/ms01/movies/$file_location/$file_name";
header("Content-Type: application/octet-stream");
$save = basename($filename);
header("Content-Disposition: attachment; filename=\"$save\"");
header("Content-Length: ".filesize($filename));
readfile($filename);
