@pieda/video-dl
v1.3.2
Published
```bash npm install @pieda/video-dl ```
Downloads
175
Readme
@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,
});