camera.getPicture 的视频质量设置

Video quality setting with camera.getPicture

质量设置适用于照片,但也适用于视频吗?

navigator.camera.getPicture(onVideoURISuccess, onFail, {
    quality: 50, // this does nothing for me
    destinationType: destinationType.FILE_URI,
    sourceType: pictureSource.PHOTOLIBRARY,
    mediaType: 1 // videos only
});

或者我是否被迫对视频进行某种视频压缩?

正如用户 jcesarmobile 所说,这仅适用于图像。

我的解决方案是改用 https://github.com/jbavari/cordova-plugin-video-editor 插件。