Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Converting WAV to MP3 in ActionScript

I am writing a script that lets a user record their voice and then saves the file as an MP3 format. I'm recording using http://code.google.com/p/micrecorder/ which works fine and the WAV is saved. However, I need to convert that file, on the drive, to mp3 before I move it along the pipeline.

I have a lot of experience in the PHP/Python/Ruby/C world, but this is my first foray into AS3, any ideas?

like image 353
CGuess Avatar asked Oct 12 '22 15:10

CGuess


1 Answers

Try the following MP3 encoder:

http://code.google.com/p/flash-kikko/

It works for me!

like image 58
initcode Avatar answered Oct 21 '22 16:10

initcode