video-editing

Installation
SKILL.md

Video Editing

Video manipulation and conversion using ffmpeg.

Get video info

ffprobe -v quiet -print_format json -show_format -show_streams input.mp4

Trim video

# Trim from 00:01:30 for 60 seconds
ffmpeg -i input.mp4 -ss 00:01:30 -t 60 -c copy trimmed.mp4

# Trim from start to specific end time
ffmpeg -i input.mp4 -ss 00:00:00 -to 00:02:00 -c copy trimmed.mp4
Related skills

More from thinkfleetai/thinkfleet-engine

Installs
2
First Seen
Mar 1, 2026