PhoneGap 녹화 및 녹음 기능 간단한 코드 구현 3

2138 단어

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!');
    				        });

녹음은 로컬 녹음기를 호출하는 것이다.

3, 진동 벨

/**
 * 
 */
var vibrate = function(){
    navigator.notification.vibrate(500);
}
/**
 *  
 */
var beep = function(){
    navigator.notification.beep(1);
}

4, 사진 촬영 기능

navigator.camera.getPicture(function(imgtemp){
		// 
    		
    		var acqimage =imgtemp;
    		//acqimage.src = "data:image/jpeg;base64," + imageData;
		param.config.param.sourceobj.startUpload(imgtemp, 0);
		}, function(){console.log(' ');}, { 
    	quality: 5,
    	destinationType:Camera.DestinationType.FILE_URL,
    	sourceType:Camera.PictureSourceType.CAMERA });

5, 그림 기능 선택

	navigator.camera.getPicture(function(imgtemp){
		console.log(" :"+imgtemp);
		},function(){console.log(' ');}, 
        <span style="white-space:pre">	</span>{quality:10,//0-100
            destinationType:Camera.DestinationType.FILE_URL, 
            sourceType:Camera.PictureSourceType.PHOTOLIBRARY, 
            mediaType:Camera.MediaType.PICTURE});

좋은 웹페이지 즐겨찾기