From d496027459025f27ab30b5be86810d8986d9b8bf Mon Sep 17 00:00:00 2001 From: test Date: Tue, 16 Dec 2025 21:58:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=8E=9F=E7=94=BB=E4=BB=A5?= =?UTF-8?q?=E4=B8=8A=E7=94=BB=E8=B4=A8=E6=97=A0=E4=BC=9A=E5=91=98=E4=B8=8D?= =?UTF-8?q?=E8=83=BD=E6=92=AD=E6=94=BETV=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- utils/androidURL.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/utils/androidURL.js b/utils/androidURL.js index 05dd878..4795631 100644 --- a/utils/androidURL.js +++ b/utils/androidURL.js @@ -67,7 +67,7 @@ async function getAndroidURL(userId, token, pid, rateType) { const baseURL = "https://play.miguvideo.com/playurl/v1/play/playurl" let params = "?sign=" + result.sign + "&rateType=" + rateType + "&contId=" + pid + "×tamp=" + timestramp + "&salt=" + result.salt - + "&flvEnable=true&super4k=true&trackSubtitle=true&h265N=true" + + "&flvEnable=true&super4k=true&h265N=true" let respData = await fetch(baseURL + params, { headers: headers }).then(r => r.json()) @@ -75,8 +75,9 @@ async function getAndroidURL(userId, token, pid, rateType) { if (respData.rid == 'TIPS_NEED_MEMBER') { printYellow("该账号没有会员 正在降低画质") - params = "?sign=" + result.sign + "&rateType=" + (rateType - 1) + params = "?sign=" + result.sign + "&rateType=3" + "&contId=" + pid + "×tamp=" + timestramp + "&salt=" + result.salt + + "&flvEnable=true&super4k=true&h265N=true" respData = await fetch(baseURL + params, { headers: headers }).then(r => r.json())