I want to know if it's possible to get a remote flv file and have it 'stream' using PHP and exec function. I have 'curl' in my environnement so i want something like :
exec ('curl http://myhosts.com/myflv.flv', $out);
print $out;
Problem is that $out is returned as an array; i want to output the 'raw' stream returned by curl.