nativescript-camera-plus
nativescript-camera-plus copied to clipboard
How to get path of saved video?
I've used your plugin, but stick with problem: How to get the path of the saved video?
@Yura13 capture videoRecordingReadyEvent, you'll get the path in args.data.
i.e.
onVideoRecorded(args) {
console.log(args.data);
}