I'm having some trouble switching from mp4 to webm recording.
This code records mp4 audio at 24fps and 640x480 resolution
private boolean prepareVideoRecorder(){
// BEGIN_INCLUDE (configure_preview)
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
if( ( checkSelfPermission(android.Manifest.permission.CAMERA)
== PackageManager.PERMISSION_GRANTED ) &&
(checkSelfPermission(android.Manifest.permission.RECORD_AUDIO)
== PackageManager.PERMISSION_GRANTED ) &&
(checkSelfPermission(android.Manifest.permission.WRITE_EXTERNAL_STORAGE)
== PackageManager.PERMISSION_GRANTED ) )
{
Log.v(TAG,"Permission is granted");
} else {
Log.v(TAG, "Permission is revoked");
//ActivityCompat.requestPermissions(this, new String[]{android.Manifest.permission.CAMERA}, 1);
ActivityCompat.requestPermissions(this, new String[]{
android.Manifest.permission.CAMERA,
android.Manifest.permission.RECORD_AUDIO,
android.Manifest.permission.WRITE_EXTERNAL_STORAGE }, 1);
}
}
mCamera = CameraHelper.getDefaultCameraInstance();
if( mCamera == null )
{
return false;
}
// We need to make sure that our preview and recording video size are supported by the
// camera. Query camera to find all the sizes and choose the optimal size given the
// dimensions of our preview surface.
Camera.Parameters parameters = mCamera.getParameters();
List<Camera.Size> mSupportedPreviewSizes = parameters.getSupportedPreviewSizes();
List<Camera.Size> mSupportedVideoSizes = parameters.getSupportedVideoSizes();
int rotationCorrected = correctCameraRotation();
parameters.setRotation( rotationCorrected );
Camera.Size optimalSize = CameraHelper.getOptimalVideoSize(mSupportedVideoSizes,
mSupportedPreviewSizes, mPreview.getWidth(), mPreview.getHeight());
// Use the same size for recording profile.
parameters.setPreviewSize( optimalSize.width, optimalSize.height);
mCamera.setParameters(parameters);
try {
// Requires API level 11+, For backward compatibility use {@link setPreviewDisplay}
// with {@link SurfaceView}
mCamera.setPreviewTexture(mPreview.getSurfaceTexture());
} catch (IOException e) {
Log.e(TAG, "Surface texture is unavailable or unsuitable" + e.getMessage());
return false;
}
// Step 1: Unlock and set camera to MediaRecorder
mMediaRecorder = new MediaRecorder();
try
{
mCamera.unlock();
try {
mMediaRecorder.setCamera(mCamera);
}catch( Exception ex )
{
Log.e(TAG, "I don't know what happened... " + ex.getMessage());
}
// Step 2: Set sources mMediaRecorder.setAudioSource(MediaRecorder.AudioSource.DEFAULT );
mMediaRecorder.setVideoSource(MediaRecorder.VideoSource.CAMERA);
CamcorderProfile profile = CamcorderProfile.get(CamcorderProfile.QUALITY_480P);
profile.videoFrameWidth = optimalSize.width;
profile.videoFrameHeight = optimalSize.height;
profile.fileFormat = MediaRecorder.OutputFormat.MPEG_4;
profile.videoCodec = MediaRecorder.VideoEncoder.MPEG_4_SP;
profile.videoFrameRate = 24;
// reduce audio quality
profile.audioBitRate = 16000;
profile.audioChannels = 1;
// Step 3: Set a CamcorderProfile (requires API Level 8 or higher)
/* This method should be called after the video AND audio sources
are set, and before setOutputFile() */
mMediaRecorder.setProfile(profile);
mMediaRecorder.setOrientationHint( rotationCorrected );
// Step 4: Set output file
mOutputFile = CameraHelper.getOutputMediaFile(CameraHelper.MEDIA_TYPE_VIDEO);
if (mOutputFile == null) {
return false;
}
mMediaRecorder.setOutputFile(mOutputFile.getPath());
// END_INCLUDE (configure_media_recorder)
}
catch( IllegalStateException ex )
{
Log.e(TAG, "IllegalStateException preparing MediaRecorder: " + ex.getMessage());
return false;
}
catch( Exception ex )
{
Log.e(TAG, "I don't know what happened... " + ex.getMessage());
return false;
}
// more stuff here
}
So, when I try to change the output format to webm, I have this
CamcorderProfile profile = CamcorderProfile.get(CamcorderProfile.QUALITY_480P);
profile.videoFrameWidth = optimalSize.width;
profile.videoFrameHeight = optimalSize.height;
// FIXME mp4 to webm
profile.fileFormat = MediaRecorder.OutputFormat.WEBM;
profile.videoCodec = MediaRecorder.VideoEncoder.VP8;
profile.audioCodec = MediaRecorder.AudioEncoder.AMR_NB;
//profile.videoFrameRate = 24;
// reduce audio quality
//profile.audioBitRate = 16000;
//profile.audioChannels = 1;
// Step 3: Set a CamcorderProfile (requires API Level 8 or higher)
/* This method should be called after the video AND audio sources
are set, and before setOutputFile() */
mMediaRecorder.setProfile(profile);
And the setProfile method is throwing an IllegalStateException that says E/MediaRecorder: output format (9) is meant for audio recording only and incompatible with video recording. Googling this message I arrived here:
- https://android.googlesource.com/platform/frameworks/av/+/114819633470ebd5b346c13c2a82a0025d2d39c0/media/libmedia/mediarecorder.cpp
- https://android.googlesource.com/platform/frameworks/av/+/114819633470ebd5b346c13c2a82a0025d2d39c0/include/media/mediarecorder.h
So, my problem is that my profile.fileFormat = MediaRecorder.OutputFormat.WEBM is triggering this
if (mIsVideoSourceSet
&& of >= OUTPUT_FORMAT_AUDIO_ONLY_START //first non-video output format
&& of < OUTPUT_FORMAT_AUDIO_ONLY_END) {
ALOGE("output format (%d) is meant for audio recording only"
" and incompatible with video recording", of);
return INVALID_OPERATION;
}
Taking a look at the OUTPUT_FORMAT_AUDIO_ONLY_START and OUTPUT_FORMAT_AUDIO_ONLY_END values I can see that OUTPUT_FORMAT_AUDIO_ONLY_END should be 9 and, in MediaRecorder.java, the Webm format is
/** VP8/VORBIS data in a WEBM container */
public static final int WEBM = 9;
What can I do to record video straight to webm?