root/test/Movie/setSoundStream/test01.php

/* [<][>][^][v][top][bottom][index][help] */
#!/usr/bin/php -c.

<? 

$srcdir = $argv[1];

$m = new SWFMovie(7);
$m->streamMP3($srcdir . "/../../Media/audio01.mp3");
for($i = 0; $i < 200; $i++)
        $m->nextFrame();

$m->save("test01.swf");

?>

/* [<][>][^][v][top][bottom][index][help] */