Questions related to audio recording in Android. For issues not so closely related to Android, use [audio-recording] tag.

learn more… | top users | synonyms

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 ...
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 ...
0
votes
2answers
717 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 ...
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
1answer
69 views

Android-dev AudioRecord without blocking or threads

I wish to record the microphone audio stream so I can do realtime DSP on it. I want to do so without having to use threads and without having .read() block while it waits for new audio data. NOTE: ...
1
vote
1answer
154 views

How to get the frequency from mic when recording voice?

I am trying to create a simple voice recorder application where i need to display the frequency changes in voice during recording. Can some body help me to get the frequency continuously during voice ...
1
vote
1answer
592 views

Use streaming audiorecord in audiomanager

I'm trying to determine the volume level of what is currently being fed through the microphone with 'getStreamVolume' in 'audiomanager'. THe only available source streams listed in the documentation ...
0
votes
1answer
45 views

Is It Possible to Record Audio Through Android Emulator?

I am Working On a Medical Project and the app can able to record the conversation between doctor and patient and send it for Transcription. Assignment : Basically App is for Recording and Playing the ...
0
votes
1answer
89 views

How to record the app's sounds via phone

I do have an app, which makes some sounds. Lets to say similar to soundboard. So, I want to record the output of my app, and then play it back. I looked over MediaRecorder but I have to show a source ...
0
votes
1answer
99 views

Minimum volume threshold using AudioRecord on Android

I am creating an app like Talking Tom. I am using AudioRecorder for recording. I only have the basic Android, no Sound Touch. The problem I am facing is that I need to record only audio that is above ...
0
votes
1answer
134 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
1answer
354 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 ...
0
votes
1answer
200 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
1answer
185 views

Issue with AudioRecord behaviour

I'm struggling to get things right using AudioRecord. Basically what I'm trying to do is seldomly record from the audio on my Android device. I don't have to get a continuous stream of bytes from the ...
0
votes
1answer
3k views

How do AudioRecord save a file (PCM.WAV)?

static final int frequency = 8000; static final int channelConfiguration = AudioFormat.CHANNEL_CONFIGURATION_MONO; static final int audioEncoding = AudioFormat.ENCODING_PCM_16BIT; recBufSize = ...
0
votes
1answer
1k views

Problem using AudioRecord with 8-bit encoding in android

I have made an application that records from the phones microphone using the AudioRecord and 16-bit encoding, and I am able to playback the recording. For some compatibility reason I need to use 8-bit ...
3
votes
0answers
275 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 ...
2
votes
0answers
61 views

Sound echo while playing recieved sound in real time

I am trying to receive audio from headset's microphone using AudioRecord and playback the audio in real time to the Headphones using AudioTrack.I have implemented required code but the problem is that ...
2
votes
0answers
34 views

change video playback rate in android

i am developing a video recorder which should change the frequency and pitch of the sound only. video should play with the same rate. I used the Soundpool library to change rate of sound in android ...
1
vote
0answers
46 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 ...
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 ...
1
vote
0answers
61 views

play video through libsonic library in android

I am using Sonic-NDK for sound modulation in my app. for the it is working fine but just for audio files. Can it be used to play video files? Here is the link to the source code of the library and my ...
1
vote
0answers
113 views

How to convert 16 bit PCM data to voltage values in Android

I am trying to calculate the db value of sound coming from the microphone in Android. I have used Audio Record class to get 16 bit PCM data from the microphone. //init a recorder instance ...
1
vote
0answers
85 views

android get device overall audio output in pcm

Is there any way to intercept or just-read the audio output in android device? I need to read the whole audio output in PCM from inside myActivity, including media player application in background, ...
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 ...
1
vote
0answers
178 views

Recorded Audio using Native Audio Recorder Issue

I am recording audio using Audio recorder (native app) of android.Using following code : final Intent audioIntent = new Intent(MediaStore.Audio.Media.RECORD_SOUND_ACTION); String path = ...
1
vote
0answers
314 views

obtainBuffer timed out in AudioRecord - Android

I am trying to get the audio input from a device. While getting the audio input, I try to assign icon to a label based on the intensity of audio input. I use the following code: public void run() { ...
1
vote
0answers
149 views

AudioRecord fails on outgoing Call?

Could not get audio input for record source 1 : ERROR/AuthorDriver(34): Command 14 completed with error -1 ERROR/MediaRecorder(363): start failed: -1 at android.media.MediaRecorder.start(Native ...
0
votes
0answers
42 views

Android Audio recorder automatically save a new file name in listview

I am new for android programming. I am doing an audio recorder for the work. The idea is everything time I do a new record. A new audio file will save it to the 'mediastore'. And they will show the ...
0
votes
0answers
38 views

Automatically sound recording and stop when user stop speaking using audio recoder

I want to recode the voice when certain level of sound receive and stop audio recorder does not receive sound. I am initially using Media recorder to check maximum amplitude when I get it then I ...
0
votes
0answers
103 views

Media Recorder Start Failed-22 inside a thread

Hi i am trying to make a video recorder android app> For some reason i need to get its audio, i have tried some libraries but nothing really extracted me the audio. So now my approach is that instead ...
0
votes
0answers
61 views

Converting PCM to AMR-WB using AmrInputStream

My Android application needs to convert recorded audio in WAV to AMR-NB and AMR-WB. And i am done with converting to AMR-NB using AmrInputStream. In AmrInputStream, the value for SAMPLES_PER_FRAME is ...
0
votes
0answers
32 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
32 views

Record audio and video in separate files

Okay, here is a silliest of approaches but anyways. I am using MediaRecorder Class to make a videoplayer in android but need to apply some changes in audio of the the video file being recorded. I have ...
0
votes
0answers
113 views

All my Sound file Wav file recorded using AudioRecord cannot be opened by System player like QuickTime

I recorded all my sound file using AudioRecord and I can played them back by using AudioTrack but in a horrible slow, low pitch voice, I don't know what got changed. I moved all the wav files from ...
0
votes
0answers
185 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 ...
0
votes
0answers
33 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
0answers
34 views

Long-time AudioRecord recording x Performance

I'm working on a app where I need to continuously keep track of the user audio input (via mic). The problem is that, as the Android does not allow us to keep track of the mic input level (as far as I ...
0
votes
0answers
216 views

RTP packetisation of raw AAC audio

I am experimenting with live streaming of AAC Audio, using RTP-RTSP protocol. (Live meaning, start streaming as soon as recording starts, before mp4 file get saved). RTP packetization needs putting ...
0
votes
0answers
72 views

Android: Play Audio via Internal Speaker

I am trying to record a voice and play it through the Internal speaker. I have set setSpeakerphoneOn() to false & also mediaPlayer.setAudioStreamType(AudioManager.STREAM_VOICE_CALL); On some ...
0
votes
0answers
96 views

change audio pitch

I am recording some audio to SDCARD and after it is recorded I would like to be able to change it's pitch. First I thought it would be possible with FFmpeg but alas it's not. What are my options?
0
votes
0answers
57 views

Has anyone had problems with Android AudioRecord and incoming phone call?

My Android app is using AudioRecord to get audio from the microphone (for frequency analysis and display). On two occasions, someone has called me while I was debugging the app (on Samsung Galaxy ...
0
votes
0answers
226 views

AudioRecord not notifying it's callback on android > 4.0

I'm implementing a recording application using the folowing code: public void start(){ this.audioRecord = new AudioRecord(this.source, session.getFrameRate(), this.channelConfiguration, ...
0
votes
0answers
402 views

AudioRecord in android

I want to use two AudioRecord object in my android application. Is that possible ? My first AudioRecord object is for getting the voice command and the second one is for calculating the voice ...
0
votes
0answers
353 views

AudioRecord class not working with external MIC on android tab

public class PlayRecordActivity extends Activity implements OnClickListener { RecordAudio rt; Button sr,str; TextView tv; boolean isRP = false; int frequency = 44100; ...
0
votes
0answers
315 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): ...