Merge branch 'telemillevaches-master-patch-65524' into 'master'

Sensible CRF quality options for peertube-plugin-transcoding-custom-quality/main.js

See merge request framasoft/peertube/official-plugins!17
This commit is contained in:
Chocobozzz 2023-10-05 08:11:36 +00:00
commit c123faca99

View File

@ -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,