Please help me how to select only video from the gallery in android and iOS in Cordova. I tried this click Here to select the video from the media, but it does not work for me ...
var pictureSource; var destinationType; var mediaType; document.addEventListener("deviceready", onDeviceReady, false); function onDeviceReady() { pictureSource = navigator.camera.PictureSourceType; destinationType = navigator.camera.DestinationType; mediaType = navigator.camera.MediaType; } navigator.camera.getPicture(onPhotoURISuccess, onFail, { destinationType: destinationType.FILE_URI, mediaType: mediaType.VIDEO, sourceType: source }); function onPhotoURISuccess(imageURI) { console.log(imageURI); } function onFail(message) { console.log(message); }
I use the same code for implementation in my application, but it cannot come ....
android ios video cordova phonegap-plugins
Hari narayanan
source share