Search code examples
cordovaionic2cordova-pluginsionic3ionic-native

Ionic 2 Native Camera - Limit duration of video capturing


I am using Ionic 2 Native to capture video in my app, and I need to limit the duration of the video to a few seconds.

Is this possible using Ionic Native? if not, is it possible using other Cordova plugins?

Thanks


Solution

  • You can use Media Capture plugin from Ionic Native, using the duration property to handle that.

    MediaCapture.captureVideo({ limit: 1, duration: 20 })...
    

    In that case, the maximum duration of the video will be 20 seconds.