🎯 Try StreamTranslate free for your next stream — 60-second setup, no card requiredStart Free Plan →
Blurred Background

Convert a Twitch clip
to TikTok format.

Twitch clips are 16:9. TikTok is 9:16. Here is how to bridge that without cutting the gameplay or the facecam out of frame.

The mismatch

Twitch is wide, TikTok is tall

A Twitch clip comes out of a 16:9 stream. TikTok, Reels, and Shorts all want 9:16. That's not a small adjustment — you're going from a frame that's wider than it is tall to one that's nearly twice as tall as it is wide.

Crop to fit and you lose about 70% of the frame width. On a stream layout, that's typically where the gameplay, the chat, or the facecam lives. The blurred-background approach avoids the choice entirely.

Process

Four steps

1

Find the clip

Grab the Twitch clip URL. If you're hunting for fresh moments, a live clip tracker surfaces new clips within seconds instead of hours.

2

Get the video file

You need the actual MP4 rather than the clip page. Any standard clip downloader will do this.

3

Convert to 9:16 with blurred fill

Run the ffmpeg command below. Output is 1080×1920 with the original clip centred and fully intact.

4

Post it fast

Timing matters more than polish. Title around what happened in the moment, not around the streamer's name.

Command

The conversion

ffmpeg -y -i twitch-clip.mp4 -filter_complex "\
  [0:v]scale=1080:1920:force_original_aspect_ratio=increase,\
       crop=1080:1920,boxblur=40:4,setsar=1[bg];\
  [0:v]scale=1080:-2[fg];\
  [bg][fg]overlay=(W-w)/2:(H-h)/2:format=auto,format=yuv420p[v]" \
  -map "[v]" -map 0:a? -c:v libx264 -preset veryfast -crf 20 \
  -c:a copy -movflags +faststart tiktok-ready.mp4

Twitch clips max out around 60 seconds, which fits every short-form platform without trimming.

Considerations

Before you post

Credit the streamer

Most communities expect it, and some streamers have explicit policies about clip reuse — particularly where monetisation is involved.

Watch for watermarks

If your download tool stamps the video, that third-party mark can reduce distribution on the platform you're posting to.

Check the safe area

Platform UI overlays the bottom and right edges. Keep anything important away from those regions.

Keep the hook early

Short-form viewers decide in about two seconds. If the payoff is at 0:40, trim to start closer to it.

FAQ

Common questions

Can I convert a Twitch clip without cropping it?

Yes. A blurred-background fit keeps the entire 16:9 frame visible and fills the vertical space with a blurred copy of the same footage.

How long can a Twitch clip be?

Up to about 60 seconds, which fits within the limits of TikTok, Reels, and Shorts without trimming.

Do I need permission to post someone's clip?

Twitch clips are built to be shared, but expectations vary by community and monetisation adds complications. Check the streamer's stated policy.

What's the fastest way to find clips worth converting?

A live clip tracker that sorts by creation time rather than views — it surfaces new clips within seconds instead of the hours Twitch's own sorting takes.

Related