On Wed, Aug 13, 2008 at 07:25:08PM +0700, John Francis Lee <[EMAIL PROTECTED]> wrote: > Now... I want to add sound. I'm sue I can make an .mp3 soundtrack file. > How would I add it to the .swf?
First, create a soundtrack using wav2swf, making sure it has the same framerate as the file you want to add it to: wav2swf -r <framerate> audio.wav -o audio.swf (You can query the framerate using "swfdump -r animation.swf") Then, add it to your file: swfcombine -Tm animation.swf audio.swf -o output.swf Greetings Matthias
