通过 MediaRecorder 录制音频 [英] Record audio via MediaRecorder

查看:33
本文介绍了通过 MediaRecorder 录制音频的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试通过 MediaRecorder 录制音频,但出现错误,我尝试更改所有内容但没有任何效果.最近两个小时我试图找到错误,我也使用了 Log 类,我发现在调用 recorder.start() 方法时发生了错误.可能是什么问题?

I am trying to record audio by MediaRecorder, and I get an error, I tried to change everything and nothing works. Last two hours I try to find the error, I used Log class too and I found out that error occurred when it call recorder.start() method. What could be the problem?

public class AudioRecorderActivity extends Activity {

MediaRecorder recorder;
File audioFile = null;
private static final String TAG = "AudioRecorderActivity";
private View startButton;
private View stopButton;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    startButton = findViewById(R.id.start);
    stopButton = findViewById(R.id.stop);

    setContentView(R.layout.main);
}

public void startRecording(View view) throws IOException{

    startButton.setEnabled(false);
    stopButton.setEnabled(true);

    File sampleDir = Environment.getExternalStorageDirectory();

    try{
        audioFile = File.createTempFile("sound", ".3gp", sampleDir);
    }catch(IOException e){
        Toast.makeText(getApplicationContext(), "SD Card Access Error", Toast.LENGTH_LONG).show();
        Log.e(TAG, "Sdcard access error");
        return;
    }

    recorder = new MediaRecorder();
    recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
    recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
    recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
    recorder.setAudioEncodingBitRate(16);
    recorder.setAudioSamplingRate(44100);
    recorder.setOutputFile(audioFile.getAbsolutePath());
    recorder.prepare();
    recorder.start();
}

public void stopRecording(View view){
    startButton.setEnabled(true);
    stopButton.setEnabled(false);
    recorder.stop();
    recorder.release();
    addRecordingToMediaLibrary();
}

protected void addRecordingToMediaLibrary(){
    ContentValues values = new ContentValues(4);
    long current = System.currentTimeMillis();
    values.put(MediaStore.Audio.Media.TITLE, "audio" + audioFile.getName());
    values.put(MediaStore.Audio.Media.DATE_ADDED, (int)(current/1000));
    values.put(MediaStore.Audio.Media.MIME_TYPE, "audio/3gpp");
    values.put(MediaStore.Audio.Media.DATA, audioFile.getAbsolutePath());
    ContentResolver contentResolver = getContentResolver();

    Uri base = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
    Uri newUri = contentResolver.insert(base, values);

    sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, newUri));
    Toast.makeText(this, "Added File" + newUri, Toast.LENGTH_LONG).show();
    }

} 

这里是 xml 布局.

And here is the xml layout.

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<Button
    android:id="@+id/start"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="146dp"
    android:onClick="startRecording"
    android:text="Start Recording" />

<Button
    android:id="@+id/stop"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/start"
    android:layout_below="@+id/start"
    android:layout_marginTop="41dp"
    android:enabled="false"
    android:onClick="stopRecording"
    android:text="Stop Recording" />

 </RelativeLayout>

并且我添加了对 AndroidManifest 文件的权限.

And I added permission to AndroidManifest file.

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="in.isuru.audiorecorder"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk android:minSdkVersion="8" />


<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name" >
    <activity
        android:name=".AudioRecorderActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

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

</manifest>

这是我得到的错误,

 06-11 18:27:44.548: E/AndroidRuntime(765): java.lang.IllegalStateException: Could not execute method of the activity
 06-11 18:27:44.548: E/AndroidRuntime(765):     at android.view.View$1.onClick(View.java:2072)

我需要录制高质量的音频.

I need to record high quality audio.

谢谢!

推荐答案

我没有花时间去寻找你的代码的错误,但这段代码有效:

I didn't take the time to bug hunt your code, but this code works:

public class ExampleActivity extends Activity implements OnClickListener {
private Button startButton;
private Button stopButton;
private MediaRecorder mediaRecorder;
private File audioFile;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.your_layout);
    startButton = (Button) findViewById(R.id.button1);
    startButton.setOnClickListener(this);
    startButton.setText("start");

    stopButton = (Button) findViewById(R.id.button2);
    stopButton.setOnClickListener(this);
    stopButton.setEnabled(false);
    stopButton.setText("stop");

    audioFile = new File(Environment.getExternalStorageDirectory(),
            "audio_test4.3gp");
}

// this process must be done prior to the start of recording
private void resetRecorder() {
    mediaRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
    mediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
    mediaRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
    mediaRecorder.setAudioEncodingBitRate(16);
    mediaRecorder.setAudioSamplingRate(44100);
    mediaRecorder.setOutputFile(audioFile.getAbsolutePath());

    try {
        mediaRecorder.prepare();
    } catch (IllegalStateException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }
}

@Override
public void onClick(View v) {
    switch (v.getId()) {
    case R.id.button1:
        mediaRecorder = new MediaRecorder();
        resetRecorder();
        mediaRecorder.start();

        startButton.setEnabled(false);
        stopButton.setEnabled(true);
        break;
    case R.id.button2:
        mediaRecorder.stop();
        mediaRecorder.release();
        mediaRecorder = null;

        startButton.setEnabled(true);
        stopButton.setEnabled(false);
        break;
    }
}

@Override
protected void onPause() {
    super.onPause();

    if (mediaRecorder != null) {
        mediaRecorder.stop();
        mediaRecorder.release();
        mediaRecorder = null;
    }
}
}

这篇关于通过 MediaRecorder 录制音频的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆