Mateus
Mateus

Reputation: 409

Capture audio and send return

I need to create an application that captures the signal from the microphone and send directly to the headphone output.

Any idea?

Upvotes: 0

Views: 64

Answers (1)

stinepike
stinepike

Reputation: 54672

you need to record and play audio simultaneously. Use AudioRecord for recording and AudioTrack for playing. you can find plenty of simultaneous play and recording example out there. Here are some sample links

link1, link2

Upvotes: 1

Related Questions