Questions related to audio recording in Android. For issues not so closely related to Android, use [audio-recording] tag.
10
votes
6answers
10k views
AudioRecord object not initializing
In the below code my audioRecord object is not initializing. I tried moving it to the onCreate method and made it a global. I've logged the state and that returns a value of 1 which means ready to ...
5
votes
3answers
4k views
AudioRecord and AudioTrack latency
I'm trying to develop an aplication like iRig for android, so the first step is to capture the mic input and play it at the same time.
I have it, but the problem is that i get some latency that makes ...
3
votes
2answers
461 views
Android AudioRecord artifact
When I use Androids AudioRecord to record from the microphone, I get this annoying artifact
Is there a way to avoid or remove this? What is it? Or do I get that because I did something wrong in the ...
5
votes
4answers
3k views
Android AudioRecord - Won't Initialize 2nd time
Hej, im currently trying to get AudioRecord to work. Because I need it in a bigger project. But it seems to mess up a lot.
I have been trying alot of things, so I went back to basic when I traced this ...
2
votes
2answers
2k views
Android AudioRecord fails to initialize
I've been having an issue with using AudioRecord for Android. I've read as much as I can find online about it, but I cannot seem to get a good initialization. I have tried the Android 2.2 emulator, ...
10
votes
4answers
7k views
Android: AudioRecord Class Problem: Callback is never called
My Android Java Application needs to record audio data into the RAM and process it.
This is why I use the class "AudioRecord" and not the "MediaRecorder" (records only to file).
Till now, I used a ...
8
votes
7answers
7k views
<AudioRecord> “Could not get audio input for record source 1”
I've been having this issue with initializing AudioRecord for Android. I searched for quite a while on the web with no success.
For the phone, I'm using a Samsung GalaxyS on SDK version 7. For the ...
2
votes
2answers
3k views
Android AudioRecord example
I am designing an Android app and I need to implement an AudioRecord class to record the user's sound. After some research (that didn't provide enough information) and few failed attempts, I was ...
5
votes
2answers
2k views
Android AudioRecord which settings to record call
I use AudioRecord class to record the voice during a call.
I am intererested to record only the voice of the person who owns the phone ( from the microphone).
During the recording I would like to do ...
1
vote
1answer
629 views
Android AudioRecord filter range of frequency
I am using android platform, from the following reference question I come to know that using AudioRecord class which returns raw data I can filter range of audio frequency depends upon my need but for ...
1
vote
2answers
790 views
Android AudioRecord Headphones with MIC
I am having some issues with the AudioRecord class. I have an app that records audio while someone is listening to audio through headphones. In this scenario, it works fine. Users are able to ...
0
votes
1answer
1k views
Accessing Native AudioRecord
I need to access the native AudioRecord class, however it is not exposed via the standard API.
When I attempt to compile code that includes AudioRecord.h using the NDK, it doesn't find the header ...