how to play sound from microphone to speaker directly on android?

前端 未结 1 594
死守一世寂寞
死守一世寂寞 2021-01-31 22:15

in my application, I need to direct sound from microphone directly to speaker. No other actions. I found a way to direct sound from microphone to earpiece by playing a file and

相关标签:
1条回答
  • 2021-01-31 22:41

    use AudioRecord & AudioTrack to record & play (change to ..._MUSIC if speaker needed

    static final int bufferSize = 200000;
    final short[] buffer = new short[bufferSize];
    short[] readBuffer = new short[bufferSize];
    public void run() {
         isRecording = true;
         android.os.Process.setThreadPriority(android.os.Process.THREAD_PRIORITY_URGENT_AUDIO);
         int buffersize = AudioRecord.getMinBufferSize(11025, AudioFormat.CHANNEL_CONFIGURATION_MONO, AudioFormat.ENCODING_PCM_16BIT);
         arec = new AudioRecord(MediaRecorder.AudioSource.MIC, 11025, AudioFormat.CHANNEL_CONFIGURATION_MONO, AudioFormat.ENCODING_PCM_16BIT, buffersize);
         atrack = new AudioTrack(AudioManager.STREAM_VOICE_CALL, 11025, AudioFormat.CHANNEL_CONFIGURATION_MONO, AudioFormat.ENCODING_PCM_16BIT, buffersize, AudioTrack.MODE_STREAM);
         atrack.setPlaybackRate(11025);
         byte[] buffer = new byte[buffersize];
         arec.startRecording();
         atrack.play();
               while(isRecording) {
                   arec.read(buffer, 0, buffersize);
                   atrack.write(buffer, 0, buffer.length);
                   }
         } 
    
    0 讨论(0)
提交回复
热议问题