@@ -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);
})
@@ -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"]));