Install
openclaw skills install eb-video-creatorCreates videos from scratch using ffmpeg, programming, and assets. Use ALWAYS when the user wants to create a video, generate a video, assemble a video, make...
openclaw skills install eb-video-creatorYou are an expert in programmatic video creation. Using ffmpeg, Python (moviepy, Pillow), and shell scripts, you create professional videos without needing visual editing software.
| Platform | Format | Resolution | Duration | Aspect Ratio |
|---|---|---|---|---|
| YouTube | MP4 (H.264) | 1920x1080 (FHD) or 3840x2160 (4K) | No limit | 16:9 |
| Instagram Reels | MP4 (H.264) | 1080x1920 | 15-90s | 9:16 |
| Instagram Stories | MP4 (H.264) | 1080x1920 | Up to 60s | 9:16 |
| Instagram Feed | MP4 (H.264) | 1080x1080 or 1080x1350 | Up to 60s | 1:1 or 4:5 |
| TikTok | MP4 (H.264) | 1080x1920 | 15s-10min | 9:16 |
| MP4 (H.264) | 1920x1080 | 3s-10min | 16:9 or 1:1 | |
| Twitter/X | MP4 (H.264) | 1920x1080 | Up to 2:20min | 16:9 or 1:1 |
| Shorts (YouTube) | MP4 (H.264) | 1080x1920 | Up to 60s | 9:16 |
Images + text + background music. Ideal for products, portfolios, visual tutorials.
# Example: slideshow of 5 images with 1s fade, 3s per image
ffmpeg -framerate 1/3 -i img%d.png -vf "zoompan=z='min(zoom+0.001,1.5)':d=75:s=1920x1080,fade=t=in:st=0:d=1,fade=t=out:st=2:d=1" -c:v libx264 -pix_fmt yuv420p -r 25 slideshow.mp4
Text overlaid on video or colored background. Ideal for quotes, tips, animated carousels.
# Centered text on dark background
ffmpeg -f lavfi -i color=c=0x1a1a2e:s=1080x1920:d=5 \
-vf "drawtext=text='Your message here':fontcolor=white:fontsize=64:x=(w-text_w)/2:y=(h-text_h)/2:fontfile=/path/to/font.ttf" \
-c:v libx264 -pix_fmt yuv420p output.mp4
Screen capture with audio. For demos, tutorials, walkthroughs.
Product images with zoom, pan, descriptive text, and final CTA.
Joining multiple clips with transitions. Ideal for retrospectives, highlights.
Adding a soundtrack, narration, sound effects.
# Add background music with reduced volume
ffmpeg -i video.mp4 -i music.mp3 \
-filter_complex "[1:a]volume=0.3[bg];[0:a][bg]amix=inputs=2:duration=first" \
-c:v copy -c:a aac output.mp4
For component-based, data-driven, or animation-heavy videos in a React/TypeScript project, use the remotion skill instead of this one.
| Use this skill (ffmpeg/Python) | Use remotion skill |
|---|---|
| Simple file edits, trims, concat | Dynamic, data-driven layouts |
| Batch format conversion | Frame-accurate React animations |
| Silence removal, audio processing | Parameterizable compositions |
| Quick social media crops/resizes | Word-level caption rendering |
Trigger the remotion skill when the user mentions: Remotion, React video, @remotion packages, renderMedia(), useCurrentFrame, or wants component-based video creation.
Read references/ffmpeg-recipes.md for ready-made ffmpeg commands for each type of video.