Ionic - Display text while recording video on camera screen

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.

What is this? Ionic Native? If so, provide a link and change the post category.

In general, this might give you some pointers: Ionic GO – Create a Pokémon GO Style Interface in Ionic 2 | Josh Morony