1.0.0 • Published 1 year ago

@bixent28/ytdl v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

@bixent28/ytdl

Simple youtube downloader, support YT Music, Shorts, And Video/Audio.

const ytdl = require("@bixent28/ytdl");

(async () => {
    try {
        let down = await ytdl.download({
            link: 'https://music.youtube.com/watch?v=n2KBmgnXS_M&si=7CATKasq3td5YvTz', // important
            quality: '128' // default
            type: 'audio' // default
        })
        console.log(down);
    } catch (error) {
        console.error("Error:", error.message);
    }
})();
1.0.0

1 year ago