MediaRecorder 和 VideoSource.SURFACE,停止失败:-1007(一个严重的 Android 错误)

MediaRecorder and VideoSource.SURFACE, stop failed: -1007 (a serious Android bug)

我正在尝试不使用 Camera 实例而是使用 Surface 视频源来录制 MediaRecorder(是的,这是可能的,但事实证明它并不是那么完美)- mediaRecorder.setVideoSource(MediaRecorder.VideoSource.SURFACE);

我刚写的是什么问题:

下一个代码仅在某些设备上有效,并且在最近的设备重新启动后在某些设备上临时有效或根本不起作用

如果它不正常 MediaRecorder.stop() 方法失败并出现下一个错误

E/MediaRecorder: stop failed: -1007 W/System.err:

java.lang.RuntimeException: stop failed. at

android.media.MediaRecorder.stop(Native Method)

录音机mp4文件太小(千字节)无法播放

测试设备:

适用于联想 P2、小米 Mi A1

不适用于小米红米 5、索尼 Xperia、小米红米 4 Prime

您也可以阅读我的代码中的注释以更好地理解问题

new Thread(() -> {

    MediaRecorder mediaRecorder = new MediaRecorder();

    File file = new File(Environment.getExternalStorageDirectory()
            + File.separator + "test_media_recorder_surface_source.mp4");
    if (file.exists()) {
        file.delete();
    }

    mediaRecorder.setVideoSource(MediaRecorder.VideoSource.SURFACE);
    mediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
    mediaRecorder.setOutputFile(file.getAbsolutePath());
    mediaRecorder.setVideoEncoder(MediaRecorder.VideoEncoder.H264);
    mediaRecorder.setVideoSize(1280, 720);
    mediaRecorder.setCaptureRate(24);

    try {
        mediaRecorder.prepare();

        int sleepTime = 1000 / 24;

        Surface surface = mediaRecorder.getSurface();

        mediaRecorder.start();

        // record something (we can also record frames here from onPreviewFrame byte arrays)
        // e.g. convert raw frame byte[] to Bitmap using mb OpenCV and then draw bitmap on canvas
        // using canvas.drawBitmap(...)
        // here we record just blue background...
        for (int i = 0; i < 120; i++) { // 5 seconds, 24 fps
            Canvas canvas = surface.lockCanvas(null);
            canvas.drawColor(Color.BLUE);
            surface.unlockCanvasAndPost(canvas);
            try {
                Thread.sleep(sleepTime);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
        // on many devices stop fails with RuntimeException -1007 error code
        // I guess it works ok 100% only for modern powerful devices...
        mediaRecorder.stop();
        // E/MediaRecorder: stop failed: -1007
        // W/System.err: java.lang.RuntimeException: stop failed.
        // at android.media.MediaRecorder.stop(Native Method)

        // recorder.reset();
        mediaRecorder.release();
        // I get file with very small size (kilobytes) and it can't be played

        // ######## RESULTS ######

        // WORKS OK ON:
        // - Lenovo P2 (Android 7)
        // - Xiaomi Mi A1 (Android 8)

        // DOESN'T WORK ON (stop fails with -1007, small video file and can't be played):
        // - Xiaomi Redmi 5 (Android 7)
        // - Sony Xperia (I don't remember the exact model and Android OS)
        // - Xiaomi Redmi 4 Prime (Android 6) *

        // * p.s. on Xiaomi Redmi 4 Prime it works some time after rebooting the device
        // if I leave this smartphone for a while and try again it will fail again
        // until I reboot the device...

    } catch (Exception e) {
        e.printStackTrace();
    }
}).start();

更新#1 似乎取得了一些进展可能是什么问题 - 代码问题 (mp4/h264)

它与 WEBM/VP8 配合使用效果更好,现在可以播放视频,但 fps 有问题,按比例显示 1000

mediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.WEBM);
mediaRecorder.setVideoEncoder(MediaRecorder.VideoEncoder.VP8);

使用

时 MediaRecord 也不会录制音频
mediaRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.VORBIS);

检查Android MediaRecorder crashes on stop when using MP4/H264 and a resolution bigger than 720p 所以当你使用 MediaRecorderMediaProjection 到 record/capture 设备屏幕时也会发生这种情况(因为它也使用 Surface...)

更新 2 是的,似乎 vp8 编解码器工作正常,但 webm 容器有一个问题 - 没有音频!

有问题 Android 只是不支持 VORBIS/OGG 音频编码... https://developer.android.com/guide/topics/media/media-formats#audio-formats

估计没有解决办法

所以答案:MediaRecorder/Android 是有问题的,或者移动公司在开发他们的设备时并不关心所有 Android 功能

更新

MediaCodec 和 canvas

也有问题
mSurface = mMediaCodec.createInputSurface();
mSurface.lockHardwareCanvas()

它适用于更多带有 MediaCodec 的设备,但仍有一些设备可能无法使用此方法正确录制视频

所以 最终答案:在使用 MediaCodecMediaRecorder 时,永远不要使用 lockCanvaslockHardwareCanvas,这是越野车..

唯一的方法——OpenGl ES

关于问题的其他链接:

https://github.com/googlesamples/android-Camera2Video/issues/86 https://issuetracker.google.com/issues/111433520