3

我有一个正在录制视频的 winJS。虽然我可以让它工作,但我想在 15 秒后自动停止相机录制。目前,凸轮记录超过 15 秒,然后从视频中剪掉 15 秒。我希望相机在 15 秒后自动关闭/停止录制。我有以下代码:

function captureVideo() {
    WinJS.log && WinJS.log("", "sample", "status");

    // Using Windows.Media.Capture.CameraCaptureUI API to capture a video
    var dialog = new Windows.Media.Capture.CameraCaptureUI();

    dialog.videoSettings.allowTrimming = true;
    dialog.videoSettings.format = Windows.Media.Capture.CameraCaptureUIVideoFormat.mp4;
    dialog.videoSettings.maxDurationInSeconds = document.getElementById("txtDuration").value;
    dialog.captureFileAsync(Windows.Media.Capture.CameraCaptureUIMode.video).done(function (file) {

        if (file) {

            var videoBlobUrl = URL.createObjectURL(file, {oneTimeOnly: true});
            document.getElementById("capturedVideo").src = videoBlobUrl;
            localSettings.values[videoKey] = file.path;

        } else {
            WinJS.log && WinJS.log("No video captured.", "sample", "status");
        }
    }, function (err) {
        WinJS.log && WinJS.log(err, "sample", "error");
    });
}
4

1 回答 1

1

您正在使用的 CameraCaptureUI 牺牲了功耗以换取易用性和标准界面。如果您需要更多功能,例如开始和停止录制的能力,您应该使用 MediaCapture 对象。在codeSHOW中查看我的mediacap 演示。在其中,我使用 MediaCapture 录制音频,但您可能会弄清楚如何录制视频并添加您的时间概念。

于 2013-06-28T18:32:33.147 回答