Video Capture Plus
This plugin offers some useful extras on top of the default Media Capture Plugin capabilities:
- HD recording.
- Starting with the front camera.
- A custom overlay (currently iOS only).
https://github.com/danielsogl/cordova-plugin-video-capture-plus
Stuck on a Cordova issue?
If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Installation#
- Capacitor
- Cordova
- Enterprise
$ npm install cordova-plugin-video-capture-plus $ npm install @ionic-native/video-capture-plus $ ionic cap sync
$ ionic cordova plugin add cordova-plugin-video-capture-plus $ npm install @ionic-native/video-capture-plus
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. Learn More or if you're interested in an enterprise version of this plugin Contact Us
#
Supported Platforms- Android
- iOS
#
Usage#
ReactLearn more about using Ionic Native components in React
#
Angularimport { VideoCapturePlus, VideoCapturePlusOptions, MediaFile } from '@ionic-native/video-capture-plus/ngx';
constructor(private videoCapturePlus: VideoCapturePlus) { }
...
const options: VideoCapturePlusOptions = { limit: 1, highquality: true, portraitOverlay: 'assets/img/camera/overlay/portrait.png', landscapeOverlay: 'assets/img/camera/overlay/landscape.png'}
this.videoCapturePlus.captureVideo(options).then(mediafile: MediaFile[] => console.log(mediafile), error => console.log('Something went wrong'));