我在从mp4切换到webm录制时遇到了一些麻烦。
此代码以24fps和640x480分辨率记录mp4音频
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
}
所以,当我尝试将输出格式更改为webm时,我有了这个
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);
并且setProfile方法抛出一个IllegalStateException,表示 E / MediaRecorder:输出格式(9)仅用于录音并且与视频录制不兼容。 谷歌搜索这条消息我来到这里:
所以,我的问题是我的profile.fileFormat = MediaRecorder.OutputFormat.WEBM正在触发这个
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;
}
看一下OUTPUT_FORMAT_AUDIO_ONLY_START和OUTPUT_FORMAT_AUDIO_ONLY_END值,我可以看到OUTPUT_FORMAT_AUDIO_ONLY_END应为9,而在MediaRecorder.java中,Webm格式为
/** VP8/VORBIS data in a WEBM container */
public static final int WEBM = 9;
如何将视频直接录制到webm?
答案 0 :(得分:1)
据我所知,WebM容器不支持AMR-NB语音编解码器。它仅支持Vorbis和Opus音频编解码器。见这里:https://www.webmproject.org/about/faq/
为什么你不想使用WebM的Vorbis音频编解码器(Opus用于语音)?这是合乎逻辑的。
答案 1 :(得分:0)
嗯,这似乎是Android SDK版本的一个问题。
IllegalStateException出现在具有SDK 17的设备上。在具有SDK 23的设备上运行相同的应用程序正常工作,我可以录制webm视频。
然而,没有声音:(