Hello
I wonder if it is possible to do some kind of pass trough streaming of a
file in PHP without making the content go through the mmap process?
IE I want to make a PHP file that reads a mp3 file and sends it to the
listning client, possibly winamp but mmap caches the whole mp3 file before
starting to generate the output to the client. Is there some way to do this
with PHP?
A short example of what I want to do:
<?
readfile("mymp3.mp3");
?>
Ofcource my intention for this is more complicated then the example code I
wrote but you get the point :)
Doing this on a 100 meg mp3 file makes my server wanna retire :(

Regards David Nordenberg



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to