|
@@ -87,6 +87,7 @@ parseSetCookie = (headers) => {
|
|
|
request = async (method, url, data = null, headers = {}, platform) => {
|
|
|
if (platform === "WEB") {
|
|
|
url = url.replace("https://www.youtube.com", "http://127.0.0.1");
|
|
|
+ url = url.replace("https://music.youtube.com", "http://127.0.0.1");
|
|
|
}
|
|
|
console.log(`request url:${url}`)
|
|
|
console.log(`request data:${data}`)
|
|
@@ -274,33 +275,20 @@ detail = async (url, platform) => {
|
|
|
|
|
|
let originFormats = [];
|
|
|
|
|
|
- // // web
|
|
|
- // const currentFormats = [];
|
|
|
- // for (const format of ytInitialPlayerResponse["streamingData"]["formats"].concat(ytInitialPlayerResponse["streamingData"]["adaptiveFormats"])) {
|
|
|
- // if (format) {
|
|
|
- // format["from"] = "web"
|
|
|
- // currentFormats.push(format);
|
|
|
- // }
|
|
|
- // }
|
|
|
- // originFormats = originFormats.concat(currentFormats);
|
|
|
- // console.log(`after html, format size:${originFormats.length}`);
|
|
|
-
|
|
|
// android
|
|
|
try {
|
|
|
- const apiKey = 'AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8'
|
|
|
- const apiUrl = `https://www.youtube.com/youtubei/v1/player?key=${apiKey}`;
|
|
|
+ const apiUrl = `https://music.youtube.com/youtubei/v1/player?key=AIzaSyAO_FJ2SlqU8Q4STEHLGCilw_Y9_11qcW8`;
|
|
|
const apiResp = await request('POST', apiUrl, JSON.stringify({
|
|
|
- "videoId": url.replace('https://www.youtube.com/watch?v=', ''),
|
|
|
- "contentCheckOk": true,
|
|
|
- "params": "8AEB",
|
|
|
"context": {
|
|
|
"client": {
|
|
|
- "clientName": "ANDROID_MUSIC",
|
|
|
- "clientVersion": "5.16.51",
|
|
|
- "androidSdkVersion": 30
|
|
|
+ "clientName": "ANDROID",
|
|
|
+ "hl": "en",
|
|
|
+ "clientVersion": "18.49.37",
|
|
|
+ "gl": "US"
|
|
|
}
|
|
|
},
|
|
|
- "racyCheckOk": true
|
|
|
+ "videoId": url.replace('https://www.youtube.com/watch?v=', ''),
|
|
|
+ "params": "CgIQBg"
|
|
|
}), {
|
|
|
'Host': 'www.youtube.com',
|
|
|
'Connection': 'keep-alive',
|
|
@@ -325,6 +313,17 @@ detail = async (url, platform) => {
|
|
|
}
|
|
|
console.log(`after android api, format size:${originFormats.length}`);
|
|
|
|
|
|
+ // web
|
|
|
+ const currentFormats = [];
|
|
|
+ for (const format of ytInitialPlayerResponse["streamingData"]["formats"].concat(ytInitialPlayerResponse["streamingData"]["adaptiveFormats"])) {
|
|
|
+ if (format) {
|
|
|
+ format["from"] = "web"
|
|
|
+ currentFormats.push(format);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ originFormats = originFormats.concat(currentFormats);
|
|
|
+ console.log(`after html, format size:${originFormats.length}`);
|
|
|
+
|
|
|
const baseJsUrl = `https://www.youtube.com${JSON.parse(html.match(/set\(({.+?})\);/)[1])["PLAYER_JS_URL"]}`
|
|
|
let formatIds = [];
|
|
|
const formats = [];
|