From b51c8ec54951e80b0b53cd6596d302121ef02249 Mon Sep 17 00:00:00 2001 From: Alexis THOMAS Date: Mon, 22 Mar 2021 00:09:30 +0100 Subject: [PATCH] fix: cleanup CaptureVideoOptions removing 'quality' --- www/CaptureVideoOptions.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/www/CaptureVideoOptions.js b/www/CaptureVideoOptions.js index 6487174e..b96b9160 100644 --- a/www/CaptureVideoOptions.js +++ b/www/CaptureVideoOptions.js @@ -27,8 +27,6 @@ var CaptureVideoOptions = function () { this.limit = 1; // Maximum duration of a single video clip in seconds. this.duration = 0; - // Video quality parameter, 0 means low quality, suitable for MMS messages, and value 1 means high quality. - this.quality = 1; }; module.exports = CaptureVideoOptions;