Vi algo parecido asi que si te sirve bien......sino me disculpan ambos.
Código PHP:
Ver original<?php
// here you can chech your sessions
function flush_buffers(){
}
$filename = "/path/of/fideofeed.flv";
header('Content-Type: video/x-flv'); header("Content-Disposition: attachment; filename=video.flv"); $fd = fopen($filename, "r"); echo fread($fd, 1024 * 5); flush_buffers();
}
}
Usan sessions para autenticar al usuario...... pero creo hacen lo que el compañero pide
http://gonzalo123.com/2010/09/20/liv...ming-with-php/