AudioRecord class in standard Android API for recording raw Audio.
3
votes
1answer
22 views
I want to set metadata to audio recording done in .m4a format in iOS
can any one help, i need to set the metadata to audio recording done by application.
I have a image which i need to set in the artWork of the recording.
Thanks in advance.
0
votes
1answer
16 views
Audiorecorder, Choosing the input channels. Mac and RME
I am trying to simply record sound through an external sound card: RME Fireface 400.
This is the code I am using:
AO = audioplayer(mls_o,fs,16,5); % mls_o is the signal that is played.
AI = ...
0
votes
0answers
65 views
Android AudioRecord and AudioTrack is compatible?
I'm working on basic pcm voice data transmission over datagram protocol. I used AudioRecord and AudioTrack classes. But i need to use 4000hz and 8 bit voice capture and play for bandwidth efficiency, ...
0
votes
1answer
60 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
22 views
How can I receive the Hardware Timestamp of Audiorecord in Android?
I need to retrieve the timestamp of when the AudioRecord class does a read of a buffer. I need to keep track of the time in milliseconds. I have tried to add a timestamp retrieve after I read the ...
0
votes
0answers
56 views
android microphone can't decode correctly in some smartphone
I write a app to decode the audio stream from microphone. I make a special format audio stream via microphone to smartphone. The special format stream Header is "2450434c", I can decode correctly in ...
0
votes
0answers
28 views
Audiorecord.read freezes main thread
I am trying to record some data using AudioRecord.Read(buffer, 0, buffer.length). The code below used to work flawlessly, but now for some reasons when trying to change the buffer size the ...
1
vote
1answer
94 views
Lame encoded mp3 audio slowed down - Android
I have been following this tutorial on using LAME mp3 on Android with jni. Recording seems to be working and I am getting an output as mp3 but upon playback the audio has been slowed down and pitched ...
0
votes
1answer
32 views
AudioRecord: “Overrun user” logs - what do they mean?
I have a simple piece of code that creates an AudioRecord object, then uses it to record to a file. It is pretty standard and seems to work perfectly fine. I am using a Samsung GalaxyS Vibrant running ...
0
votes
0answers
47 views
Android - Raw Sound Analysis/Matching
I'm writing a Android application to recognize specific sounds (i.e snoring, laughing, etc). I've successfully created a recording buffer to continuously record raw/mono/pcm 16bit sound (AudioRecord ...
0
votes
1answer
271 views
Android AudioRecord to Server over UDP Playback Issues
I am trying to make a simple Android application that streams live microphone audio to a server for playback. The resulting playback sounds strange, with large gaps in the audio. Does anyone know what ...
0
votes
0answers
80 views
Analyse AudioTrack on Android (Alternatives to Visualizer)
I want to analyse the recorded microphone-sound of my Android application.
Unfortunately the Visualizer is only able to work on an AudioTrack that is currently being played back. Currently I'm ...
2
votes
0answers
139 views
AudioRecord writing/reading raw PCM data to file
File pcmFile = new File(mediaPath, TEMP_PCM_FILE_NAME);
if (pcmFile.exists())
pcmFile.delete();
int total = 0;
mAudioRecordInstance.startRecording();
...
0
votes
1answer
66 views
Checking device's supported PCM sample rates
I'd like to check whether device supports particular sample rate.
I've tried the following (which should work according ...
0
votes
1answer
120 views
AudioRecord - Invalid audio buffer size
I have a problem with below lines when using AudioFormat.ENCODING_PCM_8BIT as AudioFormat. When using AudioFormat.ENCODING_PCM_16BIT these work fine.
bufferSize = ...
0
votes
1answer
128 views
Android AudioRecord read method: Can it ever read more data than has been recorded?
I am having alot of issues with the android AudioRecord class. I have always been confused with how the read method within AudioRecord works, hopefully someone can answer...
Consider this scenario;
...
0
votes
0answers
36 views
Making photos on Android App while recording audio calls obtainBuffer timed out
I'm working on an Android App where I can take pictures and record audio the same time.
Recording sound alone isn't a problem. The files get recorded as mp3 files and merged in the end.
Taking ...
1
vote
2answers
523 views
Android Client and Node.js Server
I'm trying to develop a proyect like PTTDroid, I mean a Push-To-Talk or Walkie-Talkie application.
The issue is that in this app you can“t use 3G to access the web, so I've decided to use a Node.js ...
0
votes
0answers
79 views
Android finding when AudioRecord.read started recording
I am trying to accurately find out when an array of samples returned from AudioRecord.read() was recorded.
Setup is:
Arduino outputting a sine wave using a timer and phase correct PWM
Android timing ...
0
votes
0answers
68 views
Why does Android AudioRecord initialization fail?
I used following Tutorial to make a sound recording app:
When I start it on my test device (LG P970 Optimus Black) I get an error code:
Error creating AudioRecord instance: initialization check ...
2
votes
0answers
642 views
Android MediaCodec AAC encoder
I use the MediaCodec class provided by the Android SDK since API level 16 with the OMX.SEC.aac.enc encoder to encode audio to a file. I get the audio
input from the AudioRecord class. My instance of ...
0
votes
1answer
83 views
AudioRecord buffer filled with zeros
Why is the audioData short[] buffer I create in the code below filled with 0 upon each
samplesIn += mRecordInstance.read(audioData, samplesIn, bufferSize - samplesIn);
?
The size of the buffer ...
2
votes
2answers
205 views
Android Getting distance using sound between two devices
The idea is Phone A sends a sound signal and bluetooth signal at the same time and Phone B will calculate the delay between the two signals.
In practice I am getting inconsistent results with delays ...
0
votes
0answers
227 views
dalvikvm-heap Out of memory Error
Please help me finding out where i am doing wrong.
Here is the code for returning recorded byte[] from AudioRecord class
public byte[] getAudioFrameBytes() {
...
1
vote
0answers
62 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 ...
0
votes
0answers
104 views
How to stop sound input and output from changing to internal when recording audio in Android?
I've got a strange bug in my audio recording app that causes the device to switch to internal audio when I call AudioRecord.startRecording(); Meaning, all audio from every app (music players, ...
1
vote
1answer
76 views
Does endian act differently on different devices
I'm using AudioRecord.read(byte[], int, int) to record 16-bit PCM data. Using this method, I can get little endian data on my device but I don't know if it works on other devices. Although I saw API ...
0
votes
1answer
67 views
Retrieve string from AudioRecord buffer
I'm using Basic4Android and the AudioRecord library that is based on this
I want to know how to retrieve a string from buffer
In short, if you register with audiorecord a word (eg, "hello"), you can ...
0
votes
0answers
53 views
Two threads reading from same AudioRecord instance on Android
I have the problem that when I have two threads using the same AudioRecord instance accessing the microphone and reading data from it, the audio seems to be corrupted. In the app, I use an SDK from ...
2
votes
2answers
111 views
What codec is used for audiodata from AudioRecord.read() in android
Audio data is saved in the same way as here:
// 1. create AudioRecord instance
// 2. audioTrack.play();
// 3. in separate thread reading into buffer
// int bytesRead = ...
0
votes
0answers
51 views
Can I stream data from AudioRecord?
I'm using AudioRecord to get and analyze microphone data, then plot the results on a graph. Right now I'm just filling the minimum size buffer and sending that to be analyzed, but this is resulting in ...
0
votes
1answer
142 views
Async Task Memory Cleanup
I am having a bit of trouble with how to cleanup the memory used in my AsyncTask when the user forces the application to quit or go to the background.
Specifically, I have an app that is using an ...
0
votes
0answers
95 views
android: play buffer using AudioRecord
I'm trying to make play back sound without saving audio file.
I use AudioRecord for recording the microphone input
this is the part of recording in my code :
minSize = ...
1
vote
0answers
74 views
How to set recording source to device microphone when a handsfree is connected?
Following this question i use AudioRecord to record from internal device Mic as follows:
recorder = new AudioRecord(AudioSource.MIC, sRate,
AudioFormat.CHANNEL_IN_MONO,
...
1
vote
1answer
164 views
AudioRecord - empty buffer
I' m trying to record some audio using AudioRecord class. Here is my code:
int audioSource = AudioSource.MIC;
int sampleRateInHz = 44100;
int channelConfig = AudioFormat.CHANNEL_IN_MONO;
...
0
votes
2answers
136 views
Android - .read() method
I' m trying to read recorded data into the short array. I want to continue recording and reading until it is full. My code:
http://pastebin.com/r6yuPn82
Unfortunately applications crashes after ...
1
vote
1answer
559 views
AudioRecord - writing PCM file
I' m trying to record some voice using AudioRecord class and then write it to output .pcm file. I want my program to keep recording until the stop button is pressed. Unfortunatelly no matter how long ...
0
votes
1answer
135 views
AudioRecord: AudioFormat constants and microphone selection
I'm currently starting writing a software for Android which is about to measure the reverberation time of closed rooms.
I had to choose AudioRecord instead of MediaRecorder because it gives me the ...
0
votes
0answers
86 views
AudioRecord listener doesn't work - Android
I've a problem, another one, with AudioRecord. I need read in the buffer the data of the AudioRecord Object. The problem is that the listener that have the read() methods was never invoked.
This is my ...
0
votes
1answer
532 views
Frequency detection on Android - AudioRecord
This is my second question because i hawe a problem. I've to implement a simple Frequency detection on Android. For the DFT i've found the jTransform library ...
1
vote
0answers
152 views
How can I tell when android AudioRecord read() method encounters an overflow?
I am using android.media.AudioRecord to get raw audio input, and then I am processing this in real-time to display immediate feedback. I can adjust various processing parameters to change the quality ...
0
votes
2answers
165 views
Asynctask after config change
I am relativity new to Android programming.
From my activity I fire off a a Asynctask that does this:
onPreExecute(): sets up the AudioRecord and gets it ready to record
doInBackground():
while ...
1
vote
1answer
259 views
Android's Audiorecord doesn't work
I try to implement a simple audio recorder in Android. It was very easy with MediaRecorder, but for my scope, i need AudioRecord, because i've to transform the input data with jTrasform.
But I can't ...
0
votes
1answer
356 views
AudioRecord and MediaRecorder Android parallele
I have to use in my application and audiorecord MediaRecorder same time. One register my scripts and the other for displaying the sound input with the amplitudes of the input signal. My application ...
2
votes
2answers
2k views
Android AudioRecord and MediaRecorder
I'm developing an audio processing application where I need to record audio, and then process it to obtain features of that recording. However, I want the audio in a playable format to play it after ...
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 ...
0
votes
2answers
450 views
“Error: Unsupported configuration: sampleRate 44100, format 1, channelCount 1”-AudioRecord Android
I don't understand why I have this error. Can you help me?
Here is my code:
int bufferSize = AudioRecord.getMinBufferSize(44100,AudioFormat.CHANNEL_CONFIGURATION_MONO, ...
0
votes
1answer
461 views
Output of .wav file not as 16000khz 16 bit sampling rate [duplicate]
Possible Duplicate:
how to convert or record .wav file in 16khz 16bit mono little-endian?
I had tried To Record the sound in android device with the following code .i can successfully ...
0
votes
0answers
203 views
Is it possibly to have sumultaneously two instances of AudioRecord with Echoprint in Android?
Hi all! Sorry in advance for my English. :)
I am trying to make an audio recognition app with Echoprint code. One instance works fine, but we would like to listen simultaneously with several ...
0
votes
1answer
246 views
Simple Producer-Consumer example
I am developing simple producer-consumer example. One thread records audio samples using AudioRecord class and writes them into buffer. Second one just reads the buffer and does nothing. When user ...

