dsh-vidfetch
dsh-vidfetch — a DeepSeek Harness plugin to download videos.
AI 분석
核心用途是让 Agent 具备视频下载能力。适合需要让 AI 自动根据 URL 提取并下载视频到指定本地目录的任务场景。
설치
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:anaksunamu/dsh-vidfetchUsage
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": [] }