1,录音功能
navigator.device.capture.captureAudio( function(files){//成功回调函数 Ext.getCmp("video_files_mainview").config.param.sourceobj.startUpload(files[0].fullPath, 2); }, function(error){//失败回调函数 // navigator.notification.alert('Error code: ' + error.code, null, 'Capture Error'); }, {limit:1});//一次最多录制的文件个数
2,录像功能
navigator.device.capture.captureVideo( function(files){//成功回调 // navigator.notification.alert(files[0].fullPath); Ext.getCmp("video_files_mainview").config.param.sourceobj.startUpload(files[0].fullPath, 1); }, function(){//失败回调 // navigator.notification.alert('错误码:' + err.code, null, 'Uh oh!'); });
录音是调用本地录音机。
时间: 2024-10-06 02:27:17