2
votes
1answer
70 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: ...
32
votes
1answer
783 views

Transfer data through audio jack cable over two Android devices

I'm researching on transferring text data over male-to-male audio jack cable. I'm testing this on HTC one V and on PC, which supports male-to-male audio jack for data transfer as mentioned in this ...
0
votes
1answer
426 views

Adjusting the mic sensitivity while recording audio in android

I am developing an android application which records audio in PCM using the AudioRecord API. I want to adjust the mic sensitivity to low, medium and high as the user chooses it in the settings. Is it ...
0
votes
0answers
73 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 ...
1
vote
0answers
161 views

How to create android application for change the voice like talking tom? [closed]

I am creating app for simple voice changer. I need to know how to modulate the voice with different kind like talking tom. Could some one help me here. Thanks in advance.
1
vote
1answer
593 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 ...