repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | --- |
| #2 | name: video-frames |
| #3 | description: Extract frames or short clips from videos using ffmpeg. |
| #4 | homepage: https://ffmpeg.org |
| #5 | metadata: {"clawdbot":{"emoji":"🎞️","requires":{"bins":["ffmpeg"]},"install":[{"id":"brew","kind":"brew","formula":"ffmpeg","bins":["ffmpeg"],"label":"Install ffmpeg (brew)"}]}} |
| #6 | --- |
| #7 | |
| #8 | # Video Frames (ffmpeg) |
| #9 | |
| #10 | Extract a single frame from a video, or create quick thumbnails for inspection. |
| #11 | |
| #12 | ## Quick start |
| #13 | |
| #14 | First frame: |
| #15 | |
| #16 | ```bash |
| #17 | {baseDir}/scripts/frame.sh /path/to/video.mp4 --out /tmp/frame.jpg |
| #18 | ``` |
| #19 | |
| #20 | At a timestamp: |
| #21 | |
| #22 | ```bash |
| #23 | {baseDir}/scripts/frame.sh /path/to/video.mp4 --time 00:00:10 --out /tmp/frame-10s.jpg |
| #24 | ``` |
| #25 | |
| #26 | ## Notes |
| #27 | |
| #28 | - Prefer `--time` for “what is happening around here?”. |
| #29 | - Use a `.jpg` for quick share; use `.png` for crisp UI frames. |
| #30 |