Hi all,
I'm trying to make some MP3 streaming with my Apache Web Server and PHP
since I discovered the instruction streammp3($filename) in the swfmovie
object.
But can't make it work!
Anybody else tryied to use this feature or did I miss something?

Octopussy!

<?
// Streaming MP3 Test
$mp3_file = "sounds/test.mp3";
$m = new SWFMovie();
//$m->setRate(12.0);
$m->streamMp3(fopen($mp3_file","r"));
//$m->setFrames(141);
header('Content-type: application/x-shockwave-flash');
$m->output();
?>




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to