I want to record audio from a Swf file , not mic , not from network
just a simple swf file in local filesystem .
I use SwfLoader , load into my app , and record by :
// tigger by ENTEY_FRAME event
var bytes:ByteArray = new ByteArray();
SoundMixer.computeSpectrum(bytes, false, 0);
this.sound_bytes.writeBytes(bytes); //sound_bytes is ByteArray too
by , how to convert sound_bytes into a wav or mp3 ,or another known format ?
Thank you !!