The $wgEnabledTranscodeSet and $wgEnabledAudioTranscodeSet settings need a rewrite to support extension.json which doesn't support using for example Example::Example.
Steps to reproduce
- In the WebVideoTranscode folder and in WebVideoTranscode.php file
Actual Results
- Currently it is set like
$wgEnabledTranscodeSet = [ "Example::ENC_OGV_480P", ];
Expected Results
We should do something like
$wgEnabledTranscodeSet = [ "Example::ENC_OGV_480P" => true, ];
Or something like
$wgEnabledTranscodeSet = [ "OGV_480P"=> true, ];
and $wgEnabledAudioTranscodeSet the same format.
Per comments made at https://gerrit.wikimedia.org/r/#/c/210176/
I am not sure how it should look for the main php code where the settings are created.