Ben 10 月之前
父节点
当前提交
fe409a1ade
共有 5 个文件被更改,包括 1298 次插入29 次删除
  1. 1 0
      app.py
  2. 44 1
      js/info.js
  3. 1 1
      js/run_nginx.sh
  4. 18 27
      js/test.js
  5. 1234 0
      js/ytb.html

+ 1 - 0
app.py

@@ -1,3 +1,4 @@
+import json
 import logging
 
 import boto3

+ 44 - 1
js/info.js

@@ -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 = []

+ 1 - 1
js/run_nginx.sh

@@ -1,2 +1,2 @@
 ps axu | grep 'nginx' | awk '{print "kill -9 " $2}' | sh -x
-nginx -c $(pwd)/js/nginx.conf
+nginx -c $(pwd)/nginx.conf

+ 18 - 27
js/test.js

@@ -1,35 +1,26 @@
-const url = `https://www.youtube.com/watch?v=7wNb0pHyGuI`
+const url = `https://www.youtube.com/watch?v=S9bCLPwzSC0`
 detail(url, true)
     .then(res => {
         console.log(res);
-
-        detail(url, true)
-            .then(res => {
-                console.log(res);
-            })
-            .catch(e => {
-                console.log(e);
-            })
-
     })
     .catch(e => {
         console.log(e);
     })
 
-search("周 杰伦", null, true)
-    .then(res => {
-        console.log(res);
-
-        const next = res["data"]["next"];
-        console.log(next);
-        search("周 杰伦", next, true)
-            .then(nextRes => {
-                console.log(nextRes);
-            })
-            .catch(e => {
-                console.log(e);
-            })
-    })
-    .catch(e => {
-        console.log(e);
-    })
+// search("周 杰伦", null, true)
+//     .then(res => {
+//         console.log(res);
+//
+//         const next = res["data"]["next"];
+//         console.log(next);
+//         search("周 杰伦", next, true)
+//             .then(nextRes => {
+//                 console.log(nextRes);
+//             })
+//             .catch(e => {
+//                 console.log(e);
+//             })
+//     })
+//     .catch(e => {
+//         console.log(e);
+//     })

文件差异内容过多而无法显示
+ 1234 - 0
js/ytb.html


部分文件因为文件数量过多而无法显示