I'm developing an app in Android, that records a voice from a microphone and sends it over WIFI. For recording I use Audiorecord and Audiotrack. Because Android doesn't provide a low latency, I was looking for an audio library, which provide low latency and are cross platform capable for a later iOS implementation.
Right now I stopped by:
- libpd
- portaudio
- OpenAL Soft
My questions are:
Which of those libs is most recommended or easier to implement in my case? maybe any implementation examples?
When I broadcast a raw Audio data, which i recorded via Audiorecord, how can i filter own Audio-packets, which I produced? Should I send an ID with each Audio packet and filter by Auditrack?
thx Vikkes