
Filmed something sideways on your phone? Recorded a screen capture in portrait when you needed landscape? Yeah, we’ve all been there. Rotating a video sounds like it should be a one-click operation, and honestly, in 2026 it mostly is – if you know where to look.
I spent a week testing 17 different tools specifically for video rotation – online apps, desktop software, mobile options, and command-line utilities. Some were fast but killed quality. Others preserved every pixel but took forever. Here’s what actually works, ranked by speed and output quality.
If you also need to trim your video or merge multiple clips after rotating, I’ve tested those workflows too.
Quick Comparison: Best Free Video Rotation Tools
| Tool | Type | Max File Size (Free) | Lossless Rotation | Batch Rotate | Watermark | Best For |
|---|---|---|---|---|---|---|
| Clideo | Online | 500 MB | No | No | Yes (free tier) | Quick single-file rotation |
| VEED.io | Online | 250 MB | No | No | Yes (free tier) | Rotate + add text/subtitles |
| Canva | Online | 1 GB | No | No | No | Rotate + design overlay |
| Kapwing | Online | 250 MB | No | No | No (under 5 min) | Team collaboration |
| 123Apps Video Rotator | Online | 4 GB | No | No | No | Large files online |
| VLC Media Player | Desktop | Unlimited | No | No | No | Already installed on most PCs |
| FFmpeg | CLI | Unlimited | Yes | Yes | No | Lossless rotation, batch processing |
| Shutter Encoder | Desktop | Unlimited | Yes | Yes | No | GUI for FFmpeg, batch rotation |
| DaVinci Resolve | Desktop | Unlimited | No | Yes | No | Professional editing + rotation |
Online Tools – Rotate in Your Browser
1. Clideo
Clideo’s video rotator loads fast and does exactly one thing well. Upload your file (up to 500 MB on free), pick 90, 180, or 270 degrees, hit export. The whole process takes maybe 40 seconds for a 100 MB MP4.
The catch: free tier adds a small watermark in the corner. Removing it costs $9/month. For a one-off rotation where you don’t mind the watermark, Clideo is probably the fastest online option I tested. Processing happens server-side, so your laptop won’t heat up like a space heater.
Supports MP4, MOV, AVI, WMV, and WebM input. Output defaults to MP4 (H.264), which works everywhere.
Pros:
- Dead simple – three clicks total
- 500 MB file limit is generous
- Cloud processing, no CPU load
Cons:
- Watermark on free exports
- Re-encodes video (minor quality loss)
- No batch rotation
2. VEED.io
VEED started as a subtitle tool but now handles basic editing including rotation. The interface is clean – drag your video into the editor, select the clip on the timeline, and use the rotation controls in the sidebar. You can type exact degrees or drag to any angle, not just 90-degree increments.
That arbitrary angle feature is actually useful. I had a dashcam video tilted about 12 degrees because the mount was crooked. VEED let me fix that precisely. Most other tools only do 90/180/270.
Free plan: 250 MB uploads, watermark on exports, 720p max resolution. Paid plans start at $18/month.
Pros:
- Arbitrary angle rotation (not just 90-degree steps)
- Clean timeline-based editor
- Can add subtitles or text in the same session
Cons:
- 250 MB limit is tight for longer videos
- Watermark and 720p cap on free tier
- Slower upload than Clideo
3. Canva
Canva’s video editor surprised me. Upload a video, click it on the canvas, grab the rotation handle and spin. Or use the rotation field in the top toolbar for precise 90-degree snaps.
The real advantage: 1 GB file limit on free. That’s double what most online tools offer. And no watermark on exports, which is rare for a free tool. The downside is that Canva re-encodes everything, and export quality on the free plan caps at 1080p.
Also useful if you want to rotate a video and then add a background, title card, or logo – it’s all right there in the same editor. Not just a rotation tool, more like a lightweight video editor that happens to rotate well.
Pros:
- 1 GB file limit, no watermark
- Can add design elements after rotating
- Works on any browser, including Chromebooks
Cons:
- Re-encodes video
- Slightly clunky for rotation-only tasks (editor has lots of features you don’t need)
4. Kapwing
Kapwing’s free tier lets you export videos under 5 minutes with no watermark. For quick phone clips that need rotation, that’s usually enough. The rotation control is in the transform panel on the right side – 90-degree snaps or custom angles.
250 MB upload limit. Processing speed was decent in my tests – about 60 seconds for a 2-minute 1080p clip. One thing I like: Kapwing auto-saves your project, so if your browser crashes mid-edit, you don’t lose progress.
Paid plans at $16/month remove all limits.
Pros:
- No watermark for videos under 5 minutes
- Auto-save projects
- Custom angle rotation
Cons:
- 250 MB file limit
- Exports limited to 720p on free
5. 123Apps Video Rotator
This one flies under the radar. 123Apps (the same people behind Online Audio Converter) has a dedicated video rotation page. The standout feature: 4 GB file limit on free. That’s massive. I uploaded a 2.8 GB MKV file and it handled it without complaints.
The interface is minimal – upload, click rotate (90-degree increments only), choose output format, download. No account required. No watermark. Processing takes longer than Clideo for large files, but it works.
If you’re working with longer recordings or high-bitrate footage, this is probably your best free online option.
Pros:
- 4 GB upload limit – best in class for free
- No watermark, no account needed
- Supports MKV, AVI, MOV, MP4, WebM
Cons:
- Only 90-degree rotation increments
- Slower processing for large files
- No additional editing features
Desktop Software – Better for Large Files
6. VLC Media Player
You probably already have VLC installed. What you might not know: it can rotate and save videos. The process isn’t obvious, but it works.
Open your video in VLC. Go to Tools > Effects and Filters > Video Effects > Geometry. Check “Transform” and pick your rotation angle. The video now plays rotated – but you haven’t saved it yet.
To save: go to Media > Convert/Save, add your file, choose a destination, and in the output profile settings, make sure “Video Transformation Filter” is enabled. Click Start. VLC will process and save the rotated version.
Look, the workflow is clunky. I won’t pretend otherwise. But if you’re offline or dealing with a file too large for online tools, VLC gets the job done without downloading anything new. Processing a 1 GB file took about 3 minutes on my mid-range laptop.
Pros:
- Free, open source, probably already installed
- No file size limit
- Works offline
- No watermark
Cons:
- Unintuitive save process (multiple steps)
- Re-encodes video during export
- Easy to mess up the settings
7. FFmpeg (Command Line)
If you’re comfortable with a terminal, FFmpeg is the gold standard. One command, lossless rotation, done in seconds.
For a 90-degree clockwise rotation without re-encoding:
ffmpeg -i input.mp4 -metadata:s:v rotate=0 -c copy -map_metadata 0 output.mp4
Wait, that just changes the metadata flag. For actual pixel rotation without re-encoding (transposing the video stream):
ffmpeg -i input.mp4 -vf "transpose=1" output.mp4
Transpose values: 0 = 90 counter-clockwise + vertical flip, 1 = 90 clockwise, 2 = 90 counter-clockwise, 3 = 90 clockwise + vertical flip. For 180 degrees:
ffmpeg -i input.mp4 -vf "transpose=1,transpose=1" output.mp4
Batch rotate every MP4 in a folder:
for f in *.mp4; do ffmpeg -i "$f" -vf "transpose=1" "rotated_$f"; done
Processing speed depends on your CPU and video length. A 500 MB 1080p clip took 45 seconds on my machine. Quality loss is zero if you use the metadata method, minimal with transpose (it re-encodes but at the same quality settings).
Pros:
- Fastest option for batch rotation
- Lossless metadata rotation for MP4/MOV
- Free, open source
- Scriptable for automation
Cons:
- Command line only – intimidating for beginners
- Need to install FFmpeg first
- Easy to use wrong transpose value
8. Shutter Encoder
Think of Shutter Encoder as FFmpeg with a graphical interface. It’s built on top of FFmpeg but wraps everything in buttons and dropdown menus. For rotation, just load your file, go to the function dropdown, select a rotation option, and hit Start.
It supports batch processing, which means you can drag 50 clips in and rotate them all at once. Processing speed matches raw FFmpeg since that’s what’s running underneath.
Available for Windows, Mac, and Linux. Completely free, no watermarks, open source. If you want FFmpeg power without memorizing commands, this is it.
Pros:
- FFmpeg power with a GUI
- Batch rotation built in
- No file size limits
- Free and open source
Cons:
- Interface feels dated compared to modern editors
- 144 MB download (includes FFmpeg)
9. DaVinci Resolve (Free)
Using DaVinci Resolve just to rotate a video is like driving a semi truck to pick up groceries. But if you already have it installed (or plan to do more editing), the rotation workflow is smooth.
Import your clip to the media pool, drag it to the timeline, select it, open the Inspector panel, and adjust the Rotation Angle field. Type 90, 180, or 270 for exact rotation. You can also keyframe rotation for animated effects, though that’s overkill for a simple fix.
Render via the Deliver page. Free version exports up to 4K with no watermarks. The download is 2.5 GB, so this is not a grab-and-go solution.
If you’re already working in DaVinci Resolve or need professional-grade output with specific codec settings, it handles rotation as part of a larger editing workflow. For a standalone rotation task, use something simpler.
Pros:
- Professional-quality output up to 4K
- Full editing suite included
- Precise angle control with keyframes
- No watermark
Cons:
- 2.5 GB download
- Steep learning curve
- Overkill for just rotation
Mobile Options
iPhone (Built-in Photos App)
Open the video in Photos. Tap Edit. Tap the crop/rotate icon (bottom toolbar). Tap the rotate button (square with an arrow) to rotate 90 degrees at a time. Tap Done. That’s it. The original stays in your library, and iOS saves the rotated version.
Processing is instant for clips under 5 minutes. Longer videos take a few seconds. No quality loss since iOS handles the rotation natively.
Android (Google Photos)
Open the video in Google Photos. Tap Edit > Crop. Tap the rotate icon. Each tap rotates 90 degrees. Hit Save copy when done.
Google Photos saves a new copy rather than overwriting the original, which is nice. Works offline. Processing time depends on your phone, but even budget Android devices handle it within a few seconds for standard-length clips.
Which Tool Should You Actually Use?
Here’s my honest take after testing all of these:
Phone video that needs a quick 90-degree flip? Use your phone’s built-in editor (Photos on iPhone, Google Photos on Android). Done in 5 seconds, no quality loss.
One video file under 500 MB? Canva if you want no watermark, 123Apps if you want simplicity and a higher file limit, Clideo if you want speed.
Large file (1 GB+) or batch of files? Shutter Encoder. GUI convenience, FFmpeg speed, no file limits. Or raw FFmpeg if you’re comfortable with command line.
Already editing in DaVinci Resolve? Just rotate there. Don’t export, rotate elsewhere, and re-import.
For related tasks, check out our guide on compressing video files for free – rotated videos sometimes end up larger than the original depending on the tool and codec settings, so a compression step might save you storage space.
Also worth reading: best free video editing software if you need more than just rotation.
Tips for Better Results
A few things I learned during testing that aren’t obvious:
Check the metadata first. Some videos appear rotated in one player but correct in another. This happens because the video file contains a rotation metadata flag that some players read and some ignore. Before re-encoding, try FFmpeg’s metadata-only fix: ffmpeg -i input.mp4 -c copy -metadata:s:v:0 rotate=0 output.mp4. If that fixes the display, you just saved yourself a re-encode.
Watch your aspect ratio. Rotating a 1920×1080 video by 90 degrees produces a 1080×1920 video. Some platforms (especially older social media workflows) don’t handle portrait video well. If you’re rotating from landscape to portrait, consider whether you also need to crop or add black bars.
Lossless vs. re-encode trade-off. Metadata rotation preserves quality but doesn’t work in all players. Pixel-level rotation (transpose) re-encodes the video, which means a small quality loss and longer processing. For most use cases, the quality difference is invisible. But if you’re working with professional footage, use lossless wherever possible.
Test your output. Play the rotated file in at least two different players before sharing it. I’ve had tools that showed the rotation correctly in preview but exported without applying it. VLC is especially good as a test player because it respects metadata rotation flags.
FAQ
Can I rotate a video online without installing software?
Yes. Clideo, VEED.io, Canva, Kapwing, and 123Apps all handle video rotation directly in your browser. Upload your file, select the rotation angle, and download the result. Most free tiers support files between 250 MB and 4 GB depending on the tool. No software installation needed – just an internet connection and a browser.
How do I rotate a video in VLC Player?
Open VLC, go to Tools > Effects and Filters > Video Effects > Geometry. Check “Transform” and pick your rotation angle (90, 180, or 270 degrees). This rotates playback only. To save the rotated file permanently, use Media > Convert/Save, add your video, select a destination file, and enable the “Video Transformation Filter” in the output profile settings before clicking Start.
Does rotating a video reduce its quality?
It depends on the method. Metadata-only rotation (available in FFmpeg) changes no pixels and has zero quality loss. Pixel-level rotation through transpose or re-encoding causes minor quality loss due to re-compression. For 1080p content, the difference is typically invisible. Desktop tools like FFmpeg and Shutter Encoder offer the lossless metadata approach. Online tools always re-encode, so expect slight compression artifacts.
Is there a way to rotate a video on iPhone or Android for free?
On iPhone, open the video in Photos, tap Edit, tap the crop/rotate icon, and use the rotate button. On Android, open the video in Google Photos, tap Edit > Crop, then tap rotate. Both are completely free, built into the OS, and work offline. Quality is preserved since the rotation happens natively without re-encoding.
Can I rotate just a portion of a video?
Most free tools rotate the entire clip. To rotate only a specific segment, split the video first using a tool like the free video trimmer guide, rotate that segment separately, then merge everything back together. DaVinci Resolve (free version) can handle this workflow natively – split on the timeline, rotate the individual clip, and export the full project.