signature added. Almost Completed YouTube

This commit is contained in:
killer069
2021-08-12 11:10:18 +05:30
parent 381403bac9
commit b012e4d942
3 changed files with 227 additions and 19 deletions

View File

@@ -1,3 +1,10 @@
import { getBasicInfo } from "./YouTube/utils/extractor";
import { yt_deciphered_data } from "./YouTube/utils/extractor";
getBasicInfo('https://www.youtube.com/watch?v=IFYJNLZT_B0')
let main = async() => {
let time_start = Date.now()
await yt_deciphered_data('https://www.youtube.com/watch?v=jbMHA3P7RzU')
let time_end = Date.now()
console.log(`Time Taken : ${(time_end - time_start)/1000} seconds`)
}
main()