‹ 首页

video-processing

@guia-matthieu · 收录于 1 周前

Process video files with ffmpeg automation. Use when: compressing videos for upload; extracting audio from video; resizing for social formats; clipping segments; merging multiple videos; generating thumbnails

适合你,如果经常需要批量处理视频格式或大小

/ 下载安装
video-processing.skill双击,或拖进 Claude 桌面版 / Cowork,即完成安装↓ .skill↓ .zip
用别的 agent?下载 .zip 解压,把文件夹放进它的技能目录
Claude Code~/.claude/skills/(项目级 .claude/skills/)
Codex CLI~/.codex/skills/
Cursor自动读取上面两处目录
其他工具见其文档的「skills」目录;两个下载是同一份文件,只是名字不同
/ 通过 npx 安装 校验哈希
npx oh-my-skill add guia-matthieu/clawfu-skills/video-processing
/ 通过 bash 安装
curl -fsSL https://oh-my-skill.com/install.sh | bash -s -- guia-matthieu/clawfu-skills/video-processing
/ 已经装过?验证本机副本,不用重装
npx oh-my-skill verify guia-matthieu/clawfu-skills/video-processing
安装目标可用 --agent / --scope 或 --to 明确指定;省略时只会在唯一已存在的 agent 目录上自动选择,零命中或多命中会停止并提示。content_hash 缺失或不一致均拒装。
132GitHub stars
~1.1K最小装载
~4K含声明引用
~4K文本包总量
镜像托管

怎么用

技能原文 SKILL.md作者撰写 · MIT · a69bf67

Video Processing

Automate repetitive video editing tasks using FFmpeg - the industry-standard tool powering YouTube, Netflix, and most video platforms.
When to Use This Skill
  • Social media optimization - Resize videos for Instagram (9:16), TikTok, LinkedIn
  • Upload preparation - Compress large videos to meet platform limits
  • Audio extraction - Pull audio from webinars, interviews for podcasts
  • Content clipping - Extract highlights, quotes, or segments
  • Batch processing - Apply same operations to multiple videos
What Claude Does vs What You Decide

| Claude Does | You Decide | |-------------|------------| | Structures production workflow | Final creative direction | | Suggests technical approaches | Equipment and tool choices | | Creates templates and checklists | Quality standards | | Identifies best practices | Brand/voice decisions | | Generates script outlines | Final script approval |

Dependencies
pip install ffmpeg-python moviepy click
# Also requires ffmpeg installed on system
# macOS: brew install ffmpeg
# Ubuntu: sudo apt install ffmpeg
Commands
Compress Video
python scripts/main.py compress video.mp4 --target-mb 10
python scripts/main.py compress video.mp4 --crf 28 --output compressed.mp4
Extract Audio
python scripts/main.py extract-audio video.mp4 --format mp3
python scripts/main.py extract-audio video.mp4 --format wav --output audio.wav
Resize for Social
python scripts/main.py resize video.mp4 --format instagram  # 1080x1920 (9:16)
python scripts/main.py resize video.mp4 --format youtube    # 1920x1080 (16:9)
python scripts/main.py resize video.mp4 --format square     # 1080x1080 (1:1)
python scripts/main.py resize video.mp4 --width 1280 --height 720
Clip Segment
python scripts/main.py clip video.mp4 --start 00:30 --end 01:45
python scripts/main.py clip video.mp4 --start 00:30 --duration 60
Merge Videos
python scripts/main.py concat video1.mp4 video2.mp4 --output merged.mp4
python scripts/main.py concat ./clips/ --output compilation.mp4
Generate Thumbnail
python scripts/main.py thumbnail video.mp4 --time 00:30
python scripts/main.py thumbnail video.mp4 --best  # Auto-select best frame
Examples
Example 1: Prepare Video for Instagram Reels
# Original: 4K horizontal video, 500MB
python scripts/main.py resize long-video.mp4 --format instagram
python scripts/main.py compress long-video_instagram.mp4 --target-mb 50

# Output: long-video_instagram_compressed.mp4 (1080x1920, <50MB)
Example 2: Extract Podcast from Webinar
# Extract audio track
python scripts/main.py extract-audio webinar-recording.mp4 --format mp3 --bitrate 192k

# Output: webinar-recording.mp3 (ready for podcast hosting)
Example 3: Create Highlight Reel
# Extract multiple clips
python scripts/main.py clip interview.mp4 --start 05:30 --end 06:15 --output clip1.mp4
python scripts/main.py clip interview.mp4 --start 12:00 --end 12:45 --output clip2.mp4
python scripts/main.py clip interview.mp4 --start 28:30 --end 29:00 --output clip3.mp4

# Merge into highlight reel
python scripts/main.py concat clip1.mp4 clip2.mp4 clip3.mp4 --output highlights.mp4
Social Media Format Reference

| Platform | Format | Resolution | Max Size | Max Duration | |----------|--------|------------|----------|--------------| | Instagram Reels | 9:16 | 1080x1920 | 4GB | 90s | | Instagram Feed | 1:1 | 1080x1080 | 4GB | 60s | | TikTok | 9:16 | 1080x1920 | 287MB | 10min | | YouTube Shorts | 9:16 | 1080x1920 | - | 60s | | YouTube | 16:9 | 1920x1080 | 256GB | 12h | | LinkedIn | 1:1/16:9 | 1920x1080 | 5GB | 10min | | Twitter/X | 16:9 | 1920x1080 | 512MB | 2:20 |

Performance Tips
  1. GPU acceleration - FFmpeg uses hardware encoding when available (NVENC, VideoToolbox)
  2. CRF values - Lower = better quality, larger file. 18-28 typical range
  3. Preset selection - ultrafast for drafts, slow for final exports
  4. Two-pass encoding - Better quality for target bitrate
Skill Boundaries
What This Skill Does Well
  • Structuring audio production workflows
  • Providing technical guidance
  • Creating quality checklists
  • Suggesting creative approaches
What This Skill Cannot Do
  • Replace audio engineering expertise
  • Make subjective creative decisions
  • Access or edit audio files directly
  • Guarantee commercial success
Related Skills
  • [whisper-transcription](../whisper-transcription/) - Transcribe video audio
  • [youtube-downloader](../youtube-downloader/) - Download videos to process
  • [image-batch](../image-batch/) - Process video thumbnails
Skill Metadata
  • Mode: cyborg
category: automation
subcategory: video-processing
dependencies: [ffmpeg-python, moviepy]
difficulty: beginner
time_saved: 5+ hours/week
按 MIT 许可原样转载,未经改动 · 在 GitHub 查看 →

评论

登录即可评论;带「已验证安装」的,是发布者名下有本店的安装或持有记录。