I am in need of a library which could convert an AAC audio stream to M4A. We are facing problems while playing AAC on a HTC Desire with android 2.3.3, we get this error:

MediaPlayer.MEDIA_ERROR_SERVER_DIED (100)

I would like to know if there is any spec which i can follow to convert AAC into M4A or any library which could be utilized.

link|improve this question
feedback

2 Answers

You can make use of ffmpeg or opencore libraries to convert AAC to PCM and play it using AudioTrack.

link|improve this answer
feedback

M4A is a container format, AAC is a codec. M4A can contain AAC audio (and I believe it's one of the common codecs for M4A along with ALAC (lossless)).

I suppose you have AAC audio in some other container format? If so, you should check out libavformat. However, chances are that the hardware on the HTC does not decode the flavor of AAC you have, so you might need to trancoode or use a software decoder such as ffmpeg.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.