Installation ⚙️
npm install gifted-ytdl
Search Content 🔎
import ytdl from 'gifted-ytdl';
(async() => {
await ytdl.search("Spectre").then((result) => {
console.log(result)
}).catch((error) => {
console.log(error)
})
})()
Download Mp4 🎦
import ytdl from 'gifted-ytdl';
(async() => {
await ytdl.mp4("https://youtu.be/abcdef").then((result) => {
console.log(result)
}).catch((error) => {
console.log(error)
})
})()
Download Mp3 🎧
import ytdl from 'gifted-ytdl';
(async() => {
await ytdl.mp3("https://youtu.be/abcdef").then((result) => {
console.log(result)
}).catch((error) => {
console.log(error)
})
})()