ffmpeg-patterns
Installation
SKILL.md
FFmpeg Patterns
Best practices for video and audio processing with FFmpeg.
Basic Operations
Transcode Video
# Convert to MP4 (H.264 + AAC)
ffmpeg -i input.mov -c:v libx264 -preset medium -crf 23 \
-c:a aac -b:a 128k output.mp4
# Convert to WebM (VP9 + Opus)
ffmpeg -i input.mp4 -c:v libvpx-vp9 -crf 30 -b:v 0 \
-c:a libopus -b:a 128k output.webm
Related skills
More from mindmorass/reflex
site-crawler
Crawl and extract content from websites
303ai-video-generation
AI video generation patterns using Sora, Runway, Pika, and other AI video tools. Use when generating videos from text prompts, image-to-video conversion, AI video editing, or integrating AI video APIs.
114n8n-patterns
Design and implement n8n workflow automations with best practices
74pdf-harvester
Extract text and data from PDF documents
46graphviz-diagrams
Create complex graph visualizations using Graphviz DOT language, with both source code and pre-rendered images.
37podcast-production
Podcast production patterns and workflows. Use when recording podcasts, editing audio, transcribing episodes, generating show notes, RSS feed management, or podcast distribution.
26