From d6cee0f31b593cdb496a1983c34c4fb57045f757 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=A9l=C3=A9=20Millevaches?= Date: Tue, 11 Oct 2022 10:45:11 +0000 Subject: [PATCH] Update peertube-plugin-transcoding-custom-quality/main.js --- peertube-plugin-transcoding-custom-quality/main.js | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/peertube-plugin-transcoding-custom-quality/main.js b/peertube-plugin-transcoding-custom-quality/main.js index 8babb13..b9eb02b 100644 --- a/peertube-plugin-transcoding-custom-quality/main.js +++ b/peertube-plugin-transcoding-custom-quality/main.js @@ -36,10 +36,14 @@ async function register ({ label: 'Quality', type: 'select', options: [ - { label: 'Default', value: 23 }, - { label: 'Good', value: 20 }, - { label: 'Very good', value: 17 }, - { label: 'Excellent', value: 14 } + { label: 'Low', value: 36 }, + { label: 'Medium', value: 33 }, + { label: 'Good (Peertube default)', value: 30 }, + { label: 'Very good', value: 27 }, + { label: 'Excellent', value: 24 }, + { label: 'Perfect', value: 21 }, + { label: 'Unreasonnable', value: 18 }, + { label: 'Insane', value: 15 } ], descriptionHTML: 'Increasing quality will result in bigger video sizes', private: true,