Android MediaRecorder creating empty files

977 Views Asked by At

I am using a MediaRecorder to record video through the front camera. This works on most phones I tested on, but on a Galaxy S3, the preview is blank and it doesn't record any video (saves empty 32 byte files).

Here is my configuration for the MediaRecorder:

    @Override
    public void startRecord() {
            camera.stopPreview();
            recorder = new MediaRecorder();
            camera.unlock();

            recorder.setCamera(camera);

            recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
            recorder.setVideoSource(MediaRecorder.VideoSource.CAMERA);

            recorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
            recorder.setVideoFrameRate(profile.videoFrameRate);
            recorder.setVideoSize(profile.videoFrameWidth, profile.videoFrameHeight);
            recorder.setVideoEncodingBitRate(profile.videoBitRate);
            recorder.setAudioEncodingBitRate(profile.audioBitRate);
            recorder.setAudioChannels(profile.audioChannels);
            recorder.setAudioSamplingRate(profile.audioSampleRate);
            recorder.setVideoEncoder(MediaRecorder.VideoEncoder.H264);
            recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AAC);

            recorder.setOutputFile(outputFile);
            recorder.setOrientationHint(orientation);

            try {
                    recorder.prepare();
            } catch (Exception e) {
            }
            recorder.start();
    }

Is there anything wrong with my code?

0

There are 0 best solutions below