问题 使用android MediaRecorder


以下是我录制视频和音频的工作代码的结构:

问题: 1)为什么是 CamcorderProfile 需要? setProfile(...) 似乎将尺寸设置为QUALITY_HIGH给出的尺寸,但稍后我设置了我想要的尺寸 setVideoSize(...),这会覆盖这一点。但是,当我删除两个CamcorderProfile行时,应用程序崩溃了 setVideoSize(...) 使用LogCat E/MediaRecorder(19526): setVideoSize called in an invalid state: 2

2)我怎么不录音?文档说明如果 setAudioSource(...) 没有被叫,就没有音轨。但是,当我删除该行时,应用程序崩溃了 setProfile(...) 使用LogCat E/MediaRecorder(19946): try to set the audio encoder without setting the audio source first

3)如果我删除了两个CamcorderProfile行和 setAudioSource(...) 线,它崩溃,如1)。

4)我也试过添加线

recorder.setOutputFormat(OutputFormat.DEFAULT);

而不是CamcorderProfile线。但现在它崩溃了 perpare()。如果 setAudioSource(...) 被称为LogCat的是: E/MediaRecorder(20737): audio source is set, but audio encoder is not set 如果没有调用LogCat是: E/MediaRecorder(20544): video source is set, but video encoder is not set

我看过整个互联网,我找不到正确设置MediaRecorder的正确方法的例子。 这里 它意味着在API 8之后你应该使用CamcorderProfile类,但在我看来它引起了问题。

任何帮助都会很棒!谢谢!

代码(运行时如下):

recorder = new MediaRecorder();
recorder.setCamera(<<camera>>);
recorder.setAudioSource(MediaRecorder.AudioSource.DEFAULT);
recorder.setVideoSource(MediaRecorder.VideoSource.DEFAULT);

CamcorderProfile profile = CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH);
recorder.setProfile(profile);

recorder.setOutputFile(<<Path String>>);
recorder.setVideoSize(<<Width>>, <<Height>>);

recorder.setPreviewDisplay(<<Surface>>);

recorder.setOrientationHint(0); 
recorder.setMaxDuration(10000);
recorder.setOnInfoListener(this);

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

9300
2017-07-23 14:49


起源



答案:


我没有很多使用MediaRecorder的经验,但我正在阅读一些相关主题,我会尝试回答你的问题:

1,3和4) CamcorderProfile不仅提供分辨率,还设置输出格式和编码器(用于音频和视频)。您收到错误是因为您可能需要使用 setOutputFormat 在打电话之前 setVideoSize 你必须打电话 setVideoEncoder 和 setAudioEncoder 之后,如果你不想使用CamcorderProfile。 [根据这个 回答]

2) 同样,CamcorderProfile还设置音频属性(例如Codec,BitRate,SampleRate,...),因此您需要在调用之前设置音频源,这就是应用程序崩溃的原因。如果您不想录制音频,请尝试下一个代码:(我没有测试它,所以我实际上不知道它是否有效,但我很确定它确实如此)

recorder.setVideoSource(MediaRecorder.VideoSource.DEFAULT);
recorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
recorder.setVideoSize(WIDTH, HEIGHT);
recorder.setVideoEncoder(MediaRecorder.VideoEncoder.DEFAULT);
recorder.setOutputFile(PATH);
recorder.setPreviewDisplay(SURFACE);

recorder.prepare();
recorder.start();

另请注意,如果您不想使用CamcorderProfile(意味着您只想录制音频或视频),您可能需要设置其他参数以确保您拥有所需的质量。看一下下面的示例代码:

recorder = new MediaRecorder();
recorder.setVideoSource(MediaRecorder.VideoSource.DEFAULT);
recorder.setAudioSource(MediaRecorder.AudioSource.DEFAULT);

// Following code does the same as getting a CamcorderProfile (but customizable)
recorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
// Video Settings 
recorder.setVideoSize(WIDTH, HEIGHT);
recorder.setVideoFrameRate(FRAME_RATE);
recorder.setVideoEncoder(MediaRecorder.VideoEncoder.DEFAULT);
recorder.setVideoEncodingBitRate(VIDEO_BITRATE);
// Audio Settings
recorder.setAudioChannels(AUDIO_CHANNELS);
recorder.setAudioSamplingRate(SAMPLE_RATE);
recorder.setAudioEncoder(MediaRecorder.AudioEncoder.DEFAULT); 
recorder.setAudioEncodingBitRate(AUDIO_BITRATE);

// Customizable Settings such as:
//   recorder.setOutputFile(PATH);
//   recorder.setPreviewDisplay(SURFACE);
//   etc...

// Prepare and use the MediaRecorder
recorder.prepare();
recorder.start();
...
recorder.stop();
recorder.reset();
recorder.release();

我希望这可以帮助你。


16
2017-07-23 15:50



你是对的,正如我发布的那样,我找到了代码 setProfile() 功能。它总是打电话 setAudioEncoder() 因此,如果您不设置音频源,它将崩溃。答案是复制这个功能,这样你仍然可以使用内置的 CamcorderProfile 设置,但也选择您要设置的设置(即音频)。谢谢 - jacobianism
是的,如果您想使用摄像机获取视频,您也可以这样做。通过这种方式,您可以获得任何设备的最佳可用值,而无需对其进行硬编码。 - Thomas H.
经过大量的搜索,你的帖子结束了我的一天。在setVideoEncoder和setAudioEncoder之前放置setVideoSize就可以了。谢谢 - gtsouk


答案:


我没有很多使用MediaRecorder的经验,但我正在阅读一些相关主题,我会尝试回答你的问题:

1,3和4) CamcorderProfile不仅提供分辨率,还设置输出格式和编码器(用于音频和视频)。您收到错误是因为您可能需要使用 setOutputFormat 在打电话之前 setVideoSize 你必须打电话 setVideoEncoder 和 setAudioEncoder 之后,如果你不想使用CamcorderProfile。 [根据这个 回答]

2) 同样,CamcorderProfile还设置音频属性(例如Codec,BitRate,SampleRate,...),因此您需要在调用之前设置音频源,这就是应用程序崩溃的原因。如果您不想录制音频,请尝试下一个代码:(我没有测试它,所以我实际上不知道它是否有效,但我很确定它确实如此)

recorder.setVideoSource(MediaRecorder.VideoSource.DEFAULT);
recorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
recorder.setVideoSize(WIDTH, HEIGHT);
recorder.setVideoEncoder(MediaRecorder.VideoEncoder.DEFAULT);
recorder.setOutputFile(PATH);
recorder.setPreviewDisplay(SURFACE);

recorder.prepare();
recorder.start();

另请注意,如果您不想使用CamcorderProfile(意味着您只想录制音频或视频),您可能需要设置其他参数以确保您拥有所需的质量。看一下下面的示例代码:

recorder = new MediaRecorder();
recorder.setVideoSource(MediaRecorder.VideoSource.DEFAULT);
recorder.setAudioSource(MediaRecorder.AudioSource.DEFAULT);

// Following code does the same as getting a CamcorderProfile (but customizable)
recorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
// Video Settings 
recorder.setVideoSize(WIDTH, HEIGHT);
recorder.setVideoFrameRate(FRAME_RATE);
recorder.setVideoEncoder(MediaRecorder.VideoEncoder.DEFAULT);
recorder.setVideoEncodingBitRate(VIDEO_BITRATE);
// Audio Settings
recorder.setAudioChannels(AUDIO_CHANNELS);
recorder.setAudioSamplingRate(SAMPLE_RATE);
recorder.setAudioEncoder(MediaRecorder.AudioEncoder.DEFAULT); 
recorder.setAudioEncodingBitRate(AUDIO_BITRATE);

// Customizable Settings such as:
//   recorder.setOutputFile(PATH);
//   recorder.setPreviewDisplay(SURFACE);
//   etc...

// Prepare and use the MediaRecorder
recorder.prepare();
recorder.start();
...
recorder.stop();
recorder.reset();
recorder.release();

我希望这可以帮助你。


16
2017-07-23 15:50



你是对的,正如我发布的那样,我找到了代码 setProfile() 功能。它总是打电话 setAudioEncoder() 因此,如果您不设置音频源,它将崩溃。答案是复制这个功能,这样你仍然可以使用内置的 CamcorderProfile 设置,但也选择您要设置的设置(即音频)。谢谢 - jacobianism
是的,如果您想使用摄像机获取视频,您也可以这样做。通过这种方式,您可以获得任何设备的最佳可用值,而无需对其进行硬编码。 - Thomas H.
经过大量的搜索,你的帖子结束了我的一天。在setVideoEncoder和setAudioEncoder之前放置setVideoSize就可以了。谢谢 - gtsouk