Tagged Questions
0
votes
0answers
188 views
Android : Sound Recorder using AudioTrack to byte[] buffer and Playback
After running, code works but no playback. In this, two threads are created for recording and playing. I'm implementing this in real time voice transmission. What's wrong with my code. Any help would ...
1
vote
1answer
541 views
android sdk realtime audio record
I use this code to record and play back recorded audio in real time using the AudioTrack and AudioRecord
package com.example.audiotrack;
import android.app.Activity;
import ...
0
votes
1answer
202 views
Android AudioTrack and AudioRecord strange behaviour
I created and Audio Track and Audio Recorder object and tried to get the microphone sound back to the speaker.
To do that I created a task that "read" the Audio data from the Audio Record task and ...