2

Hi Guys I am trying to build a "4-track" recording app on Android.

I'm looking for a library or set of classes I can use record audio and mix 4 channels of audio to a 2 channel "mixdown".

Ideally it would be similar to the javax.sound.sampled library.

Low latency is also important...

I am new to Android development and have only worked in web dev for a year (c#, jquery, sql, vb).

Mike Duncan
  • 51
  • 1
  • 3

1 Answers1

1

You will likely have to do an implementation of AudioTrack. This will give you the most control.

Ref: http://developer.android.com/reference/android/media/AudioTrack.html

Android: Mixing multiple AudioTrack instances?

Community
  • 1
  • 1
dan
  • 155
  • 8