Ben 8 달 전
부모
커밋
44ed70e85a
6개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  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

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
js/pornhub.bundle.js


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
js/tiktok.bundle.js


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
js/xvideos.bundle.js


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 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"]));
 

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.