Sent and receive RTP streams in an Android application

1.6k views Asked by At

I am currently building an Android application which should be able to sent and receive RTP streams using Android's AudioRecord API.

As I couldn't find any appriotate example, I am wondering if someone here already worked with RTP in an Android application? If so, what's the best way to get started? Are there already RTP libraries available which are compatible with the AudioRecord API?

2

There are 2 answers

0
xry On BEST ANSWER

I have found an appropriate example, how RTP packets can be sent/received, in the SipDroid project.

0
Don Chakkappan On

Here is a sample project to record audio and send it over a network based on UDP protocol.You can use this for reference.