Har precis installerat ming men får det inte att funka.
Har klippochklistrat exemplet för att steama mp3 men får felet
Warning: dl() [function.dl]: ming: Unable to initialize module Module compiled with module API=20010901, debug=0, thread-safety=0 PHP compiled with module API=20020429, debug=0, thread-safety=0 These options need to match in /web/ming.php on line 2
Vad har jag gjort fel nånstans? Har startat om apache och så.. :/
<?
dl('php_ming.so'); <-- Denna raden klantar till det.. annars säjer den att inte klassen finns.
$m = new SWFMovie();
$m->setRate(12.0);
$m->streamMp3(fopen("/home/daniel/green_bag.mp3", "rb"));
// 11.85 seconds at 12.0 fps = 142 frames
$m->setFrames(141);
header('Content-type: application/x-shockwave-flash');
$m->output();
?>