Cut highlights from long recordings
Turn livestreams, podcasts, webinars, or camera-roll footage into short clips for TikTok, Instagram Reels, YouTube Shorts, and newsletters.
Cut clips from long videos for social posts, course previews, product demos, webinars, and highlights. Choose the segment on an interactive timeline, pick a preset, and export only the part you need.
Sign in to run this tool — 100 free credits on signup.
Turn livestreams, podcasts, webinars, or camera-roll footage into short clips for TikTok, Instagram Reels, YouTube Shorts, and newsletters.
Export the exact part of a lesson, walkthrough, testimonial, or feature demo without opening a full video editor.
Use the API with -ss and -t to generate previews, highlights, moderation samples, and clipped user-uploaded videos.
Quick reference for what each parameter actually does.
Drop a file or paste a public video link.
The highlighted window on the track is your clip — slide it to pick a section and adjust its length.
Fast (bitstream copy, instant) for most cases. Accurate (libx264) when you need a frame-exact cut. Smaller (libx265) when you also want a tighter file.
Temporary download link as soon as it's done. Files auto-delete after 7 days.
Bitstream copy can only cut on keyframes — usually every 2–10 seconds depending on the encoder. If you need millisecond accuracy, pick the Accurate preset. The trade-off: re-encode takes 5–30 seconds depending on length.
Yes — we add -avoid_negative_ts make_zero which fixes the off-by-one timestamp glitches that some players trip on after a stream-copy cut.
Not in one shot — this tool extracts a single segment. For multi-segment cuts, use the API: chain two trim calls and a concat.
Both re-encode for frame-accurate cuts. Accurate uses libx264 (H.264, universal compatibility, CRF 23). Smaller uses libx265 (H.265, ~40% smaller file at the same quality, but slower to encode and not playable everywhere).
Proportionally — a 30-second clip from a 10-minute video is about 1/20 the size. Fast mode keeps the original bitrate; for tighter compression pick Smaller, or run the result through the Compress tool.
Sign up for 100 free credits. A trim costs 1–2 credits in fast mode, more in re-encode modes (depends on length). No subscription, top up as you go.
This tool is a wrapper around our REST API — three lines of curl will do the same job in your build pipeline or backend.
View API docscurl -X POST https://api.ffhub.io/v1/tasks \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d {
"command": "-ss 5 -i https://you.com/in.mp4 -t 10 -c copy -avoid_negative_ts make_zero output.mp4"
}