来源信息
- 仓库
- Tugoukezhang/workbuddy-skills
- 最近来源活动
- 2026年6月18日 05:44
- 检测到的 SKILL.md 语言
- 英语
- 星标
- 13
- 分支
- 3
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
文件资源管理器
2 个文件正在显示 SKILL.md
SKILL.md
来源说明 · 只读预览- name
- video-frames
- description
- Extract frames or short clips from videos using ffmpeg.
- description_zh
- 从视频提取帧或短片段
- description_en
- Extract frames or clips from videos
# Video Frames (ffmpeg)
Extract a single frame from a video, or create quick thumbnails for inspection.
## Quick start
First frame:
```bash
{baseDir}/scripts/frame.sh /path/to/video.mp4 --out /tmp/frame.jpg
```
At a timestamp:
```bash
{baseDir}/scripts/frame.sh /path/to/video.mp4 --time 00:00:10 --out /tmp/frame-10s.jpg
```
## Notes
- Prefer `--time` for "what is happening around here?".
- Use a `.jpg` for quick share; use `.png` for crisp UI frames.
在 GitHub 查看