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