UNPKG

youtube-extractor

Version:

Unofficial YouTube API for download and search

14 lines (12 loc) 335 B
# youtube-extractor Unofficial YouTube API for download and search videos ## Download ```s $ npm i youtube-extractor --save ``` ## Simple Example for downloading ```js const extractor = require("youtube-extractor"); const formats = await extractor.get_video_formats('video_id') const downloadURL = await formats[0].downloadURL(); ```