I am working with ionic 2 in which i am using Media Capture plugin to record video and Camera plugin for capturing pictures. All what i want is to display custom text on camera screen while video is being recorded.
I am using this code for capturing video
this.mediaCapture.captureVideo({ limit: 1, duration: 120 }).then((data: MediaFile[]) => {
console.log(JSON.stringify(data));
},
(err: CaptureError) => {
console.error(err)
});
Is there any way to send additional parameter which can be used to display text on video recording screen.