Hi, I am looking for a script that can do a php streaming for mp3 I search for information, script, and program. My goal is to stream some mp3 without using a playlist Thanks for your help
you'll need ming(flash) module on server. || more info on php.net <?php $mp = new SWFMovie(); $mp->setRate(12.0); $mp->streamMp3(file_get_contents("music/my_mp3.mp3")); $mp->setFrames(142); header('Content-type: application/x-shockwave-flash'); $mp->output(); ?> Code (markup):
thanks! Please, can you just explain me the value in bold? thanks! <?php $mp = new SWFMovie(); $mp->setRate(12.0); $mp->streamMp3(file_get_contents("music/my_mp3.mp3")); $mp->setFrames(142); header('Content-type: application/x-shockwave-flash'); $mp->output(); ?>