Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android技術基礎 >> 9.4 使用MediaRecord錄音

9.4 使用MediaRecord錄音

編輯:Android技術基礎

本節引言

本節是Android多媒體基本API調用的最後一節,帶來的是MediaRecord的簡單使用, 用法非常簡單,我們寫個例子來熟悉熟悉~


1.使用MediaRecord錄制音頻

運行結果

實現代碼

布局代碼:activity_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <Button
        android:id="@+id/btn_control"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="開始錄音" />

</RelativeLayout>

MainActivity.java

public class MainActivity extends AppCompatActivity {

    private Button btn_control;
    private boolean isStart = false;
    private MediaRecorder mr = null;
    
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        btn_control = (Button) findViewById(R.id.btn_control);
        btn_control.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                if(!isStart){
                    startRecord();
                    btn_control.setText("停止錄制");
                    isStart = true;
                }else{
                    stopRecord();
                    btn_control.setText("開始錄制");
                    isStart = false;
                }
            }
        });
    }


    //開始錄制
    private void startRecord(){
        if(mr == null){
            File dir = new File(Environment.getExternalStorageDirectory(),"sounds");
            if(!dir.exists()){
                dir.mkdirs();
            }
            File soundFile = new File(dir,System.currentTimeMillis()+".amr");
            if(!soundFile.exists()){
                try {
                    soundFile.createNewFile();
                } catch (IOException e) {
                    e.printStackTrace();
                }

            }
            mr = new MediaRecorder();
            mr.setAudioSource(MediaRecorder.AudioSource.MIC);  //音頻輸入源
            mr.setOutputFormat(MediaRecorder.OutputFormat.AMR_WB);   //設置輸出格式
            mr.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_WB);   //設置編碼格式
            mr.setOutputFile(soundFile.getAbsolutePath());
            try {
                mr.prepare();
                mr.start();  //開始錄制
            } catch (IOException e) {
                e.printStackTrace();
            }

        }
    }

    //停止錄制,資源釋放
    private void stopRecord(){
        if(mr != null){
            mr.stop();
            mr.release();
            mr = null;
        }
    }
}

最後別忘了在AndroidManifest.xml中添加下述權限:

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.RECORD_AUDIO"/>

好的,就是這麼簡單~


2.本節示例代碼下載

RecordDemo.zip


本節小結:

好的,本節內容非常簡單,就是MediaRecorder的使用而已,大概是整套教程中最精簡的一節 了吧~嘿嘿~

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved