我正在使用cordova-plugin-media-capture
作为视频,然后在base64
中对其进行编码,以便从 ionic + angularjs 上的应用程序发送到AWS
网络服务。
你推荐什么?
$scope.captureVideo = function() {
var options = { duration: 5 };
$cordovaCapture.captureVideo(options).then(function(videoData) {
alert('1videoData ' + videoData[0].fullPath);
alert('1videoData ' + videoData[0].localURL);
}
}