0
votes
0answers
24 views

Handler for recording audio every 1 sec

I have the following code for recording audio every 1 sec and displaying the frequency. The problem is when i run it on the emulator its working ok with the Runnable being called every 1 sec. But the ...
0
votes
1answer
45 views

Android app to record sound in real time and identify frequency

I need to develop an app to record frequencies in real time using the phone's mic and then display them (in text). I am posting my code here. The FFT and complex classes have been used from ...
1
vote
0answers
80 views

Android - AudioRecord: Detect a pulse-width modulated signal over the audio jack (mic)

I try to dectect a square wave signal over the audio jack in near real time (Mic). For that reason I use the class AudioRecord in streaming mode. But my problem is, that my phone (mic) always works ...
0
votes
0answers
39 views

Sending Audio from Android phone to a linux device resulted in a constant scrambled sound

I've written a code that sends voice from an android device's mic to a PC(Ubuntu) through sockets (Static IP). I've changed the audio format multiple times. The problem is that I receive only ...
0
votes
0answers
36 views

Merged wav file on Android App isn't playable

In my App I record Audio as Wav files and since there isn't a real pause function I have to merge the wav files to one. Recording the part files works fine, but when I merge them the new file isn't ...
0
votes
1answer
67 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 ...
0
votes
1answer
123 views

Audio/FFT Library Design

I have a library which records real time audio and computes real time FFT data for the audio. The client must call a start method to start the recording, and a stop method to end the recording. My ...
3
votes
2answers
517 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 ...
3
votes
0answers
299 views

Implement getMaxAmplitude for audioRecord

I am using audioRecord instead of mediarecorder in my app it's working fine but I have a logic that depends highly on the maxamplitude which is really hard to obtain using the audiorecord here is what ...
1
vote
1answer
201 views

how audioRecord retrieve data with a specified sampling rate

my experiment is like this: first, I use matlab to create a specified wave file with a rate of 44100, which means any fragment lasting 1s contains 44100 elements and these elements are presented as ...
0
votes
0answers
335 views

Unable to stop the AudioRecord

When I try to stop my audioRecorder I get this exception: 05-06 13:23:29.940: E/AndroidRuntime(3110): FATAL EXCEPTION: main 05-06 13:23:29.940: E/AndroidRuntime(3110): ...
0
votes
1answer
334 views

Stop button when recording audio with AudioRecord

At the moment I have the code from this site (link text) working great. In the example on the site it starts the recording for 10 seconds and then immediately plays the audio back in reverse. I have ...