I have been trying to port FFMPEG (for playing audio) into Android using NDK. I have had some success

  • I could build FFMPEG and link it via NDK.
  • I could call avcodec_decode_audio3() and decode a given audio file.

So here I have a audio buffer output from the function. How do I play this now? Any ffmpeg guys can tell me the exact steps to decode and play audio. I am really clueless of what to do with the audio buffers created I got from avcodec_decode_audio3().

thanks a lot.

link|improve this question

73% accept rate
feedback

2 Answers

I have developed a videoplayer on android based on ffmpeg. You can use AudioTrack class to play audio onto device.

EDIT :

In Java create an audiotrack object

AudioTrack track;
bufferSize = AudioTrack.getMinBufferSize(44100,AudioFormat.CHANNEL_CONFIGURATION_MONO, AudioFormat.ENCODING_PCM_16BIT)
track = new AudioTrack(AudioManager.STREAM_MUSIC, 44100, AudioFormat.CHANNEL_CONFIGURATION_MONO, AudioFormat.ENCODING_PCM_16BIT, bufferSize, mode);

//Play audio clip
track.play();

while(stream_is_over){
//Copy the decoded raw buffer from native code to "buffer" .....
............
track.write(buffer, 0, readBytes);
}
link|improve this answer
Can you share some info on that? I would be greatly interested! – Codevalley Mar 10 '11 at 4:50
see the edited answer – Android007 Mar 10 '11 at 17:15
feedback

You can try this or maybe this.

HTH,
Sriram.

link|improve this answer
I have gone thru those sometime back. Those just help on "building" ffmpeg for Android, which I have done already. I don't know exactly how to 'use' FFMPEG library functions. – Codevalley Feb 15 '11 at 7:10
feedback

Your Answer

 
or
required, but never shown

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