I was able to save the captured photo to the library or photo album by using this codes:
navigator.device.capture.captureImage(captureSuccess, captureError,
{limit:25,destinationType : Camera.DestinationType.FILE_URI,saveToPhotoAlbum:true});
However, I also want to save the captured video as well, but I have tried and had no success. I am using this below code:
navigator.device.capture.captureVideo(captureSuccess, captureError, {limit:1, duration:60,destinationType : Camera.DestinationType.FILE_URI,saveToPhotoAlbum:true });
I am using Phonegap 3.0.0 and currently focusing on iOS app and Android apl.