2

嗨,我知道之前有人问过这个问题,但由于 phonegap 现在是 2.9,它应该已经改变并允许 Android/iOs 上的持续时间功能。我正在尝试将视频的持续时间设置为三秒-这就是我设置的方式-

function captureVideo() 
{
    //
    // Launch device video recording application, 
    // allowing user to capture up to 2 video clips
    //
    var options = { duration: 10, limit: 3 };
    navigator.device.capture.captureVideo(captureSuccess, captureError, options);    
}

我称之为

<button type="button" name="test" onclick="captureVideo();" class="css3button">Test</button>

它不工作。持续时间仍然不适用于android或ios吗?

4

0 回答 0