Anjaney Mishra
Anjaney Mishra

Reputation: 141

Compress video using cordova-plugin-media-capture

Is there any way to compress the video when we capture the video using "cordova-plugin-media-capture" plugin. because when i capture the video for 1 min then the size of video becomes approx 120 mb.

?

Upvotes: 0

Views: 4897

Answers (2)

Gijo J
Gijo J

Reputation: 1

quality 50% reduced

let options: CaptureVideoOptions = { limit: 1, quality :0.5, duration:60}; this.mediaCapture.captureVideo(options)

Upvotes: 0

Anton Biller
Anton Biller

Reputation: 168

Use cordova-plugin-video-editor.

They have an example in combination with the cordova media capture plugin.

Upvotes: 1

Related Questions