Fix max bitrate selection

This commit is contained in:
shirt-dev 2023-03-17 19:26:15 -04:00
parent cfe541e0e3
commit de26c23498
Signed by: shirt
GPG key ID: A5D61AB2D5489EE1

View file

@ -6,7 +6,7 @@ let getElementByXPath = function (xpath) {
};
let fn = function () {
const VIDEO_SELECT = getElementByXPath("//div[text()='Video Bitrate']");
const VIDEO_SELECT = getElementByXPath("//div[text()='Video Bitrate']") || getElementByXPath("//div[text()='Video Bitrate / VMAF']");
const AUDIO_SELECT = getElementByXPath("//div[text()='Audio Bitrate']");
const BUTTON = getElementByXPath("//button[text()='Override']");