video-compress
Compress videos to a target file size using ffmpeg two-pass encoding. Useful for Discord/Slack upload limits.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Compress videos to a target file size using ffmpeg two-pass encoding. Useful for Discord/Slack upload limits.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Analyze pi session transcripts to discover patterns that could become AGENTS.md rules, skills, or prompt templates. Mines your usage history for automation opportunities.
Build PR-focused context packs (PR description + git diff + full changed files + related files via Scribe), then budget-fit and token-check with o200k-base.
Review a pull request for bugs, style issues, and guideline compliance. Local review - does not post to GitHub.
Build LLM-ready code dumps with optional docs, then count tokens with tokencount (o200k-base) against a context budget (for example 272k for GPT-5).
Compress images to a target file size using macOS sips. No dependencies required.
Multi-model code review. Runs code-review skill with 3 models in parallel, then synthesizes findings.
| name | video-compress |
| description | Compress videos to a target file size using ffmpeg two-pass encoding. Useful for Discord/Slack upload limits. |
Compress videos to a target file size using ffmpeg two-pass encoding.
~/.pi/repos/pi-skills/video-compress/compress.sh <input> <output> [options]
Options:
--target MB - Target size in MB (default: 10)--scale WIDTH - Scale to width, 0 to disable (default: 1920)--no-audio - Remove audio track (good for screen recordings)# Discord upload (10MB, no audio)
compress.sh recording.mov out.mp4 --no-audio
# Slack (25MB with audio)
compress.sh video.mov out.mp4 --target 25
# Keep original resolution
compress.sh video.mov out.mp4 --scale 0
# Lower res for very long videos
compress.sh long.mov out.mp4 --target 10 --scale 1280