0
votes
1answer
56 views

Android AudioRecord - using short array or byte array?

I working on an android app which records audio. For best audio quality it is better to use a buffer of shorts while reading? //aRecorder.read(shortBuffer, 0, shortBuffer.length); ...
1
vote
0answers
29 views

simulataneous audio record and playback in android

I'm using the following pseudo code to get audio using audioRecord and play it audioTrack for eg a hearing aid project. your_audio_thread_run() { declare audio buffer create AudioRecord create ...
0
votes
1answer
62 views

Calculate the elapse time from AudioRecord

How do we calculate the elapsed time from AudioRecord? What I am trying to do is similar to this PDF of "figure 5(Second graph)". To further explain myself I am getting the voice of a person in real ...
1
vote
0answers
61 views

AudioRecord Input Gain

I'm using AudioRecord to record an input from a 4-conductor audio jack. The problem is that the input is too loud and causes the signal to clip. I was wondering if anyone knew of a way that I could ...
3
votes
2answers
470 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 ...
0
votes
2answers
715 views

AudioRecord read returns strange values

I am trying to build some kind of sound-meter to the Android platform. (i am using HTC wildfire) I use the AudioRecord class for that goal, however it seems that the values that are being returned ...
2
votes
1answer
2k views

Android AudioRecord frequency filter step by step

Android: I am new to voice process, I have created AudioRecord Object with sampleRate 8000Hz using JTransform library i am trying to filter frequency there are couple of things in the following code ...
1
vote
1answer
637 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 ...
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 ...
4
votes
1answer
604 views

How to play back AudioRecord with some delay

I'm implementing an app which will repeat everything I'm telling it. What I need is to play the sound I'm recording on a buffer just with a second of delay So that I would be listening myself but 1 ...
2
votes
3answers
3k views

Android AudioRecord Supported Sampling Rates

I'm trying to figure out what sampling rates are supported for phones running Android 2.2 and greater. We'd like to sample at a rate lower than 44.1kHz and not have to resample. I know that all ...
0
votes
3answers
2k views

Record Audio Using AudioRecord in android

From the below code I can create test.pcm file but I couldn't play it in mobile or pc. I have also tired with test.mp3, test.wav and test.raw. I got toast that player doesn't support this type of ...
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 ...
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 ...
0
votes
1answer
657 views

AudioRecord latency (Android) GT-i5700

I got 0.3-0.5 sec latency while record audio (live monitoring). Here's my code: code from here: Android - Getting audio to play through earpiece public class Sounds extends Activity { private ...
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 ...
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 ...