Browse Source

add: audioUrl to youtube.js

Ben 8 months ago
parent
commit
5e8b3fcb98
7 changed files with 14 additions and 13 deletions
  1. 0 0
      js/pornhub.bundle.js
  2. 0 0
      js/tiktok.bundle.js
  3. 0 0
      js/xvideos.bundle.js
  4. 0 0
      js/youtube.bundle.js
  5. 1 1
      js/youtube/index.html
  6. 1 1
      js/youtube/test.js
  7. 12 11
      js/youtube/youtube.js

File diff suppressed because it is too large
+ 0 - 0
js/pornhub.bundle.js


File diff suppressed because it is too large
+ 0 - 0
js/tiktok.bundle.js


File diff suppressed because it is too large
+ 0 - 0
js/xvideos.bundle.js


File diff suppressed because it is too large
+ 0 - 0
js/youtube.bundle.js


+ 1 - 1
js/youtube/index.html

@@ -3,7 +3,7 @@
 <head>
     <meta charset="UTF-8">
     <title>JavaScript in Browser</title>
-    <script src="youtubev1.js"></script>
+    <script src="youtube.js"></script>
     <script src="test.js"></script>
 </head>
 </html>

+ 1 - 1
js/youtube/test.js

@@ -6,7 +6,7 @@
 //         console.log(e);
 //     })
 
-detail(`https://www.youtube.com/watch?v=S9bCLPwzSC0`, '123', 'LOCAL')
+detail(`https://www.youtube.com/watch?v=S9bCLPwzSC0`, 'WEB')
     .then(res => {
         console.log(res);
     })

+ 12 - 11
js/youtube/youtube.js

@@ -200,16 +200,16 @@ 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}`);
+        let audioUrl = ""
+        for (let format of originFormats) {
+            if (format["url"]) {
+                const {vcodec, acodec} = parseCodecs(format)
+                if (!vcodec && acodec) {
+                    audioUrl = format["url"]
+                    break
+                }
+            }
+        }
 
         let qualities = [];
         const formats = [];
@@ -237,7 +237,8 @@ detail = async (url, platform) => {
                             "abr": "0",
                             "container": "mp4_dash",
                             "from": format["from"],
-                            "source": format
+                            "source": format,
+                            "audioUrl": audioUrl
                         }
                         formats.push(current)
                         qualities.push(format["qualityLabel"]);

Some files were not shown because too many files changed in this diff