EDIT: When I click the record button a second time ( to stop recording ) it force closes the app. The specific code for that event:

else if(isrec) {
                recorder.stop();
                recorder.reset();
                recorder.release();
                recorder = null;
                isrec = false;
                Toast.makeText( getApplicationContext(),"No longer recording!",Toast.LENGTH_SHORT).show();
            }

(Original question): I'm having trouble trying to get an app to record sound on a button click. I've included the code... and here's what my Toasts tell me:

  • after setAudioSource
  • after setOutputFile
  • isrec is not true
  • trying...
  • caught IO Exception...

Any help is greatly appreciated.

private OnClickListener micListener = new OnClickListener() {
    boolean isrec = false;
    public void onClick(View v) {
        MediaRecorder recorder = new MediaRecorder();
        recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
        Toast.makeText( getApplicationContext(),"after setAudioSource",Toast.LENGTH_SHORT).show();
        recorder.setOutputFormat(MediaRecorder.OutputFormat.RAW_AMR);
        File outputFile = null;
        outputFile = getFileStreamPath("output.amr");
        recorder.setOutputFile(outputFile.getAbsolutePath());

        Toast.makeText( getApplicationContext(),"after setOutputFile",Toast.LENGTH_SHORT).show();
        recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
        if(!isrec) {
            Toast.makeText( getApplicationContext(),"isrec is not true",Toast.LENGTH_SHORT).show();
            try {
                Toast.makeText( getApplicationContext(),"trying...",Toast.LENGTH_SHORT).show();
                recorder.prepare();
                recorder.start();
                isrec = true;
                Toast.makeText( getApplicationContext(),"Recording!",Toast.LENGTH_SHORT).show();
            } catch (IllegalStateException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
                Toast.makeText( getApplicationContext(),"caught IllegalState Exception...",Toast.LENGTH_SHORT).show();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
                Toast.makeText( getApplicationContext(),"caught IO Exception...",Toast.LENGTH_SHORT).show();
            }
        } else if(isrec) {
            recorder.stop();
            recorder.reset();
            recorder.release();
            recorder = null;
            isrec = false;
            Toast.makeText( getApplicationContext(),"No longer recording!",Toast.LENGTH_SHORT).show();
        }
    }
};
link|improve this question
feedback

3 Answers

First of all, you should use a boolean for isrec instead of a string

That :

 FileDescriptor fileName = null;
  recorder.setOutputFile(fileName); 

That means you want to record on a file which is null

If you create a file, and you pass it as a parameter of your recorder, it should work.

Edit : Sometimes the release doesn't work when you want to stop the recorder. So, just keep stop() and reset()

link|improve this answer
Thanks! I created a file and it no longer gave an IO exception, so that's good, but now when I click the button the second time, I get a force close. I've updated the code in my original post. – user1212011 Feb 21 at 23:02
Don't do the release. I had the same problem. Try by removing the release and just keep stop and reset – Jeremy D Feb 21 at 23:49
feedback

Try the following code for the main activity :

public class AudioRecordTestActivity extends Activity
{
private static final String LOG_TAG = "AudioRecordTest";
private static String mFileName = null;

private RecordButton mRecordButton = null;
private MediaRecorder mRecorder = null;

private PlayButton   mPlayButton = null;
private MediaPlayer   mPlayer = null;

private void onRecord(boolean start) {
    if (start) {
        startRecording();
    } else {
        stopRecording();
    }
}

private void onPlay(boolean start) {
    if (start) {
        startPlaying();
    } else {
        stopPlaying();
    }
}

private void startPlaying() {
    mPlayer = new MediaPlayer();
    try {
        mPlayer.setDataSource(mFileName);
        mPlayer.prepare();
        mPlayer.start();
    } catch (IOException e) {
        Log.e(LOG_TAG, "prepare() failed");
    }
}

private void stopPlaying() {
    mPlayer.release();
    mPlayer = null;
}

private void startRecording() {
    mRecorder = new MediaRecorder();
    mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
    mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
    mRecorder.setOutputFile(mFileName);
    mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);

    try {
        mRecorder.prepare();
    } catch (IOException e) {
        Log.e(LOG_TAG, "prepare() failed");
    }

    mRecorder.start();
}

private void stopRecording() {
    mRecorder.stop();
    mRecorder.release();
    mRecorder = null;
}

class RecordButton extends Button {
    boolean mStartRecording = true;

    OnClickListener clicker = new OnClickListener() {
        public void onClick(View v) {
            onRecord(mStartRecording);
            if (mStartRecording) {
                setText("Stop recording");
            } else {
                setText("Start recording");
            }
            mStartRecording = !mStartRecording;
        }
    };

    public RecordButton(Context ctx) {
        super(ctx);
        setText("Start recording");
        setOnClickListener(clicker);
    }
}

class PlayButton extends Button {
    boolean mStartPlaying = true;

    OnClickListener clicker = new OnClickListener() {
        public void onClick(View v) {
            onPlay(mStartPlaying);
            if (mStartPlaying) {
                setText("Stop playing");
            } else {
                setText("Start playing");
            }
            mStartPlaying = !mStartPlaying;
        }
    };

    public PlayButton(Context ctx) {
        super(ctx);
        setText("Start playing");
        setOnClickListener(clicker);
    }
}

public AudioRecordTestActivity() {
    mFileName = Environment.getExternalStorageDirectory().getAbsolutePath();
    mFileName += "/audiorecordtest.3gp";
}

@Override
public void onCreate(Bundle icicle) {
    super.onCreate(icicle);

    LinearLayout ll = new LinearLayout(this);
    mRecordButton = new RecordButton(this);
    ll.addView(mRecordButton,
        new LinearLayout.LayoutParams(
            ViewGroup.LayoutParams.WRAP_CONTENT,
            ViewGroup.LayoutParams.WRAP_CONTENT,
            0));
    mPlayButton = new PlayButton(this);
    ll.addView(mPlayButton,
        new LinearLayout.LayoutParams(
            ViewGroup.LayoutParams.WRAP_CONTENT,
            ViewGroup.LayoutParams.WRAP_CONTENT,
            0));
    setContentView(ll);
}

@Override
public void onPause() {
    super.onPause();
    if (mRecorder != null) {
        mRecorder.release();
        mRecorder = null;
    }

    if (mPlayer != null) {
        mPlayer.release();
        mPlayer = null;
    }
}

and in the manifest file specify the following permissions

 <uses-permission android:name="android.permission.RECORD_AUDIO"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
link|improve this answer
feedback

Maybe this will help? The article will show you how to solve two issues:

  1. Show the way to record WAV file.
  2. Record audio with best quality as possible.
link|improve this answer
Here, I hope it's better now. – Daniel Mošmondor Feb 23 at 19:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.