diff --git a/peertube-plugin-transcoding-custom-quality/main.js b/peertube-plugin-transcoding-custom-quality/main.js index 3a7fd92..4b783b2 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,