/video-dl

Primary LanguageTypeScriptMIT LicenseMIT

@pieda/video-dl

npm install @pieda/video-dl
import { useDownloader } from '@pieda/video-dl';

const ytdl = useDownloader({ type: 'youtube' });
await ytdl({
    videoType: 'youtube',
    videoId: '<videoId>',
    dest: '<path to download>',
    debug: false,
});
import { useYoutube } from '@pieda/video-dl';

await useYoutube({
    videoId: '<videoId>',
    dest: '<path to download>',
    debug: false,
});