VLC Picture Stretched / Wrong Aspect Ratio — Fixes
A stretched or squashed picture — faces too wide, circles as ovals — means the aspect ratio is being applied incorrectly. VLC usually auto-detects the right ratio from the file metadata, but some files (and some settings) break that detection. This guide covers the three ratio layers in VLC: the file’s native ratio, the global "aspect ratio" setting, and per-file overrides.
Why does this happen?
- A global aspect-ratio setting left enabled — a previous session set "16:9" or "4:3" globally and every new file inherits it.
- Missing or wrong SAR in the file — some encodes have incorrect pixel aspect ratio (SAR) metadata, so the player shows the wrong shape.
- Anamorphic content without flags — DVD and some broadcast rips are anamorphic; without the flags, VLC cannot stretch them correctly.
- Auto-stretch enabled — VLC’s "Always fit window" can distort picture when you resize the window non-proportionally.
- Corrupted preferences — stale video settings from an older VLC version can override per-file detection.
How to fix it
Fix 1Reset the aspect ratio to Auto
The immediate fix for stretched playback
During playback, press A on the keyboard — this cycles aspect ratios; keep pressing until it returns to "Default".
The picture returns to its native shape.
Or: Tools > Preferences > Video > "Aspect Ratio" → set to Default.
The global setting is reset.
Save and restart VLC.
New files play with auto-detected ratios.
Fix 2Set the correct ratio per file
Fixes files with missing metadata
Play the file and go to Video > Aspect Ratio.
The ratio menu opens.
Pick the matching ratio (16:9, 4:3, 2.35:1, or "Original") — watch the picture until shapes look correct.
The picture is correct.
If vertical black bars remain on a widescreen file, try "16:10" or use the Crop menu (Video > Crop) to remove them.
The frame fills correctly without distortion.
Fix 3Disable auto-stretch / fit-to-window distortion
Stops distortion when resizing the window
Go to Tools > Preferences > Video.
Video settings open.
Uncheck "Always fit video to window" (or set "Fit" to None) so the picture keeps its ratio.
The window resizes without stretching.
Save and restart, then resize the window to confirm.
The picture letterboxes instead of stretching.
Fix 4Reset VLC preferences to defaults
Clears corrupted settings that cause crashes, black screens and audio issues
Close VLC completely.
No VLC process is running.
Open a command prompt (Win+R → cmd) or terminal.
A command line is available.
Run:
vlc --reset-config(Windows/Linux) — on macOS delete~/Library/Preferences/org.videolan.vlcinstead.VLC preferences are restored to defaults.
Launch VLC and re-apply only the settings you actually need.
VLC starts with clean settings.
Advanced fixes
Fix 1Fix the file’s SAR metadata with ffmpeg
Permanently corrects broken aspect-ratio flags
Check the file:
ffprobe -v error -select_streams v -show_entries stream=width,height,sample_aspect_ratio -of default=noprint_wrappers=1 input.mkv.The pixel aspect ratio is shown (often 1:1 or 0:1).
If SAR is wrong (e.g. 0:1 for an anamorphic file), remux with the correct value:
ffmpeg -i input.mkv -c copy -aspect 16:9 output.mkv.A corrected file is created.
Play the corrected file — VLC now shows it correctly without any setting.
The file is fixed at the source.
How to avoid it in the future
- Leave Aspect Ratio on Default unless a specific file needs an override.
- Use Crop, not Aspect Ratio, to remove black bars without distortion.
- Re-encode/remux problem files once so every player shows them correctly.
- Export your preferences after configuring VLC so a reset restores your setup quickly.
Frequently asked questions
Why does VLC show my video stretched only in fullscreen?
What is the difference between Aspect Ratio and Crop?
My 2.35:1 movie has small black bars top and bottom — normal?
The picture is correct on my phone but stretched on my PC
Summary
Reset the aspect ratio to Auto — The immediate fix for stretched playback. If it does not help, work through the remaining fixes in order: each targets a different layer of the problem. Most users resolve this issue by fix 3 at the latest. Keep VLC updated (current stable: 3.0.23) and revisit this guide when a new VLC version ships.