Android realizes direct playback of microphone capture sound _android

Source: Internet
Author: User
Tags thread class

This example describes the Android implementation that directly plays the sound captured by the microphone. Share to everyone for your reference. Specifically as follows:

This is a direct playback microphone captured by the voice thread class:

Class Recordthread extends thread{static final int frequency = 44100; 
  static final int channelconfiguration = Audioformat.channel_configuration_mono; 
static final int audioencoding = Audioformat.encoding_pcm_16bit; @Override public void Run () {//TODO auto-generated method stub int recbufsize = Audiorecord.getminbuffersize (freq 
  Uency, Channelconfiguration, audioencoding) *2; 
  int plybufsize = audiotrack.getminbuffersize (Frequency, channelconfiguration, audioencoding) *2; Audiorecord Audiorecord = new Audiorecord (MediaRecorder.AudioSource.MIC, frequency, channelconfiguration, 
  Audioencoding, recbufsize); Audiotrack audiotrack = new Audiotrack (audiomanager.stream_music, Frequency, channelconfiguration, audioEncoding, 
  Plybufsize, Audiotrack.mode_stream); 
  byte[] Recbuf = new Byte[recbufsize]; 
  Audiorecord.startrecording (); 
  Audiotrack.play (); 
    while (true) {int readlen = Audiorecord.read (recbuf, 0, recbufsize); Audiotrack.write (recbuf, 0, Readlen); 
  } audiotrack.stop (); 
  Audiorecord.stop (); 
 } 
}

When used, this is OK:

Copy Code code as follows:
Recordthread rec = new Recordthread ();
Rec.start ();

You need to add routing permissions to the Androidmanifest.xml file:

Copy Code code as follows:
<uses-permission android:name= "Android.permission.RECORD_AUDIO"/>

I hope this article will help you with your Android program.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.