|
@@ -127,12 +127,54 @@ getUrlFromSignature = async (signatureCipher, baseJsUrl, local) => {
|
|
|
|
|
|
detail = async (url, local) => {
|
|
|
try {
|
|
|
+ if (url.includes('?')) {
|
|
|
+ url = `${url}&bpctr=9999999999&has_verified=1`;
|
|
|
+ } else {
|
|
|
+ url = `${url}?bpctr=9999999999&has_verified=1`;
|
|
|
+ }
|
|
|
console.log(`接受到解析请求: ${url}`);
|
|
|
const headers = {
|
|
|
- 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Safari/537.36',
|
|
|
+ 'User-Agent': 'com.google.ios.youtube/19.09.3 (iPhone14,3; U; CPU iOS 15_6 like Mac OS X)',
|
|
|
}
|
|
|
const html = await request('GET', url, null, headers, local);
|
|
|
|
|
|
+ // 尝试找到更好的
|
|
|
+ try {
|
|
|
+ let regex = /ytcfg\.set\s*\(\s*({.+?})\s*\)\s*;/
|
|
|
+ let match = html.match(regex);
|
|
|
+ if (match == null || match.length !== 2) {
|
|
|
+ console.log(`无法找到更好的format`);
|
|
|
+ } else {
|
|
|
+ const masterYtConfig = JSON.parse(match[1]);
|
|
|
+ const headers = {
|
|
|
+ 'Origin': 'https://www.youtube.com',
|
|
|
+ 'X-YouTube-Client-Name': masterYtConfig['INNERTUBE_CONTEXT_CLIENT_NAME'],
|
|
|
+ 'X-YouTube-Client-Version': masterYtConfig['INNERTUBE_CLIENT_VERSION'],
|
|
|
+ 'User-Agent': 'com.google.ios.youtube/19.09.3 (iPhone14,3; U; CPU iOS 15_6 like Mac OS X)',
|
|
|
+ 'Content-Type': 'application/json'
|
|
|
+ }
|
|
|
+ const apiKey = masterYtConfig['INNERTUBE_API_KEY']
|
|
|
+ const data = {
|
|
|
+ 'context': masterYtConfig['INNERTUBE_CONTEXT'],
|
|
|
+ 'videoId': url.replace('https://www.youtube.com/watch?v=', ''),
|
|
|
+ 'playbackContext': {
|
|
|
+ 'contentPlaybackContext': {
|
|
|
+ 'html5Preference': 'HTML5_PREF_WANTS',
|
|
|
+ 'signatureTimestamp': 0
|
|
|
+ }
|
|
|
+ },
|
|
|
+ 'contentCheckOk': true,
|
|
|
+ 'racyCheckOk': true
|
|
|
+ }
|
|
|
+ const jsUrl = `https://www.youtube.com/youtubei/v1/player?key=${apiKey}&prettyPrint=false`;
|
|
|
+ const res = await request('POST', jsUrl, JSON.stringify(data), headers, local);
|
|
|
+ console.log(`找到了更好的`);
|
|
|
+ console.log(JSON.stringify(res));
|
|
|
+ }
|
|
|
+ } catch (e) {
|
|
|
+ console.log(`无法找到更好的format,并且报错了: ${e}`);
|
|
|
+ }
|
|
|
+
|
|
|
let regex = /var ytInitialPlayerResponse\s*=\s*({.*?});/;
|
|
|
let match = html.match(regex);
|
|
|
if (!match || !match.length) {
|
|
@@ -140,6 +182,7 @@ detail = async (url, local) => {
|
|
|
throw new Error('JSON not found.');
|
|
|
}
|
|
|
const ytInitialPlayerResponse = JSON.parse(match[1]);
|
|
|
+ console.log(ytInitialPlayerResponse);
|
|
|
const originVideoDetails = ytInitialPlayerResponse["videoDetails"];
|
|
|
console.log(`videoDetails: ${JSON.stringify(originVideoDetails)}`);
|
|
|
const thumbnails = []
|