ワンクリックで
camera-recorder
Record video from the system camera using ffmpeg. Supports custom duration, filename, and automatic dependency management.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Record video from the system camera using ffmpeg. Supports custom duration, filename, and automatic dependency management.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Record audio from the system microphone using ffmpeg. Supports custom duration, filename, and automatic dependency management.
Take a photo using the system camera with imagesnap. Supports custom filename and automatic dependency management.
Run SonarQube code quality checks and generate actionable reports. Use when users ask to install/configure/use SonarScanner for NPM (`@sonar/scan`), run project scans, fetch scan results via SonarQube Web API, and analyze code quality, defects, and prioritized remediation suggestions.
| name | camera-recorder |
| description | Record video from the system camera using ffmpeg. Supports custom duration, filename, and automatic dependency management. |
Record video from the system camera and save as MP4.
Use when the user asks to record video, capture footage, or start camera recording.
| Feature | Description |
|---|---|
| Camera recording | Uses system FaceTime HD Camera via avfoundation |
| Custom duration | Default 30 seconds, configurable |
| Custom filename | Supports custom output filename |
| MP4 output | 720p H.264, 30fps |
| Auto-send | Sends video to chat after completion |
| Permission check | Detects camera permission automatically |
| Dependency check | Installs ffmpeg if missing |
Record a video for 10 seconds
Record 60 seconds, save as demo.mp4
| Parameter | Type | Default | Description |
|---|---|---|---|
| duration | int | 30 | Recording duration in seconds |
| filename | string | auto-generated | Output filename |
| Spec | Value |
|---|---|
| Resolution | 1280x720 (720p HD) |
| Frame rate | 30 fps |
| Codec | H.264 (libx264) |
| Format | MP4 |
| Pixel format | yuv420p |
brew install ffmpeg)camera-recorder/
├── SKILL.md # Skill definition
└── record_camera.sh # Recording script
video_YYYYMMDD_HHMMSS.mp4| Error | Resolution |
|---|---|
| ffmpeg not installed | Auto-installs via brew |
| Camera permission denied | Guide user to System Settings |
| Camera in use by another app | Ask user to close the other app |
| Recording failed | Return error message, suggest retry |