nativescript-camera-plus icon indicating copy to clipboard operation
nativescript-camera-plus copied to clipboard

How to get path of saved video?

Open Yura13 opened this issue 7 years ago • 1 comments

I've used your plugin, but stick with problem: How to get the path of the saved video?

Yura13 avatar Sep 22 '18 18:09 Yura13

@Yura13 capture videoRecordingReadyEvent, you'll get the path in args.data. i.e.

onVideoRecorded(args) {
    console.log(args.data);
}

MiroDojkic avatar Jan 31 '19 08:01 MiroDojkic