dsh-vidfetch
dsh-vidfetch — a DeepSeek Harness plugin to download videos.
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:anaksunamu/dsh-vidfetch说明文档
阅读完整 README ↗Usage
The model calls fetch_video with two required parameters:
| Parameter | Type | Description |
|---|---|---|
url | string | The URL where the video is located. |
dir | string | Output directory for the downloaded file. |
Example call the agent makes:
{ "url": "https://example.com/watch/abc123", "dir": "~/downloads" }
Output:
{ "message": "ok", "files": ["downloads/video.mp4"] }
On failure, message contains a short error cause and files is empty:
{ "message": "Unsupported URL", "files": [] }