Agent Skills
› spinabot/brigade
› video-frames
video-frames
GitHub利用 ffmpeg 从视频中提取单帧图片或生成缩略图,支持指定时间戳。提供 JPG 用于快速分享,PNG 用于高清晰度 UI 展示,适用于视频内容检查与预览场景。
触发场景
用户需要从视频中获取特定时刻的画面
用户需要生成视频缩略图或封面图
用户需要检查视频中的某个片段
安装
npx skills add spinabot/brigade --skill video-frames -g -y
SKILL.md
Frontmatter
{
"name": "video-frames",
"homepage": "https:\/\/ffmpeg.org",
"metadata": {
"brigade": {
"emoji": "🎬",
"install": [
{
"id": "brew",
"bins": [
"ffmpeg"
],
"kind": "brew",
"label": "Install ffmpeg (brew)",
"formula": "ffmpeg"
}
],
"requires": {
"bins": [
"ffmpeg"
]
}
}
},
"description": "Extract frames or short clips from videos using ffmpeg."
}
Video Frames (ffmpeg)
Extract a single frame from a video, or create quick thumbnails for inspection.
Quick start
First frame:
{baseDir}/scripts/frame.sh /path/to/video.mp4 --out /tmp/frame.jpg
At a timestamp:
{baseDir}/scripts/frame.sh /path/to/video.mp4 --time 00:00:10 --out /tmp/frame-10s.jpg
Notes
- Prefer
--timefor “what is happening around here?”. - Use a
.jpgfor quick share; use.pngfor crisp UI frames.
版本历史
- db99206 当前 2026-07-05 11:00


