Ben 8 months ago
parent
commit
44ed70e85a
6 changed files with 7 additions and 1 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/test.js
  6. 6 0
      js/youtube/youtubev1.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/test.js

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

+ 6 - 0
js/youtube/youtubev1.js

@@ -251,6 +251,12 @@ detail = async (url, requestId, platform) => {
             }
         }
 
+        for (const item of originVideoDetails['thumbnail']['thumbnails']) {
+            thumbnails.push({
+                'url': item['url'], 'width': item['width'] + "", 'height': item['height'] + ""
+            })
+        }
+
 
         formats.sort((a, b) => parseInt(a["height"]) - parseInt(b["height"]));
 

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