there's a better way to do it oops

This commit is contained in:
wukko 2023-04-10 18:32:14 +06:00
parent b0e6dc7528
commit b4eddd06fe
1 changed files with 3 additions and 3 deletions

View File

@ -73,9 +73,9 @@ export default async function(o) {
};
return r
}
let checkSingle = (i) => (i['quality_label'] && (i['quality_label'].split('p')[0] === quality || i['quality_label'].split('p')[0] === bestQuality) && i["mime_type"].includes(c[o.format].codec)),
checkBestVideo = (i) => (i['quality_label'] && i['quality_label'].split('p')[0] === bestQuality && !i["has_audio"] && i["has_video"]),
checkRightVideo = (i) => (i['quality_label'] && i['quality_label'].split('p')[0] === quality && !i["has_audio"] && i["has_video"]);
let checkSingle = (i) => ((i['quality_label'].split('p')[0] === quality || i['quality_label'].split('p')[0] === bestQuality) && i["mime_type"].includes(c[o.format].codec)),
checkBestVideo = (i) => (i["has_video"] && !i["has_audio"] && i['quality_label'].split('p')[0] === bestQuality),
checkRightVideo = (i) => (i["has_video"] && !i["has_audio"] && i['quality_label'].split('p')[0] === quality);
if (!o.isAudioOnly && !o.isAudioMuted && o.format === 'h264') {
let single = info.streaming_data.formats.find(i => checkSingle(i));