diff --git a/peertube-plugin-transcoding-custom-quality/main.js b/peertube-plugin-transcoding-custom-quality/main.js index 9626ded..8babb13 100644 --- a/peertube-plugin-transcoding-custom-quality/main.js +++ b/peertube-plugin-transcoding-custom-quality/main.js @@ -38,8 +38,10 @@ async function register ({ options: [ { label: 'Default', value: 23 }, { label: 'Good', value: 20 }, - { label: 'Very good', value: 18 } + { label: 'Very good', value: 17 }, + { label: 'Excellent', value: 14 } ], + descriptionHTML: 'Increasing quality will result in bigger video sizes', private: true, default: defaultCRF }) diff --git a/peertube-plugin-transcoding-custom-quality/package.json b/peertube-plugin-transcoding-custom-quality/package.json index c72926e..f17c6df 100644 --- a/peertube-plugin-transcoding-custom-quality/package.json +++ b/peertube-plugin-transcoding-custom-quality/package.json @@ -1,6 +1,6 @@ { "name": "peertube-plugin-transcoding-custom-quality", - "version": "0.0.1", + "version": "0.0.2", "description": "Set a custom quality for transcoding", "engine": { "peertube": ">=3.3.0" @@ -14,7 +14,7 @@ "bugs": "https://framagit.org/framasoft/peertube/official-plugins/issues", "library": "./main.js", "staticDirs": {}, - "css": [ ], + "css": [], "clientScripts": [], "translations": {} }