Skip to content

Commit

Permalink
Fix max bitrate selection
Browse files Browse the repository at this point in the history
  • Loading branch information
shirt-dev committed Mar 17, 2023
1 parent cfe541e commit de26c23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netflix_max_bitrate.js
Original file line number Diff line number Diff line change
Expand Up @@ -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']");

Expand Down

0 comments on commit de26c23

Please sign in to comment.