VLC Picture Stretched / Wrong Aspect Ratio — Fixes

Video Playback Issues Last updated: Applies to: All platforms · VLC 3.0.x · all formats

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 flagsDVD 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

  1. 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.

  2. Or: Tools > Preferences > Video > "Aspect Ratio" → set to Default.

    The global setting is reset.

  3. Save and restart VLC.

    New files play with auto-detected ratios.

NotePressing A again on future files is the fastest way to spot a global override — if it changes shape, the global setting was active.

Fix 2Set the correct ratio per file

Fixes files with missing metadata

  1. Play the file and go to Video > Aspect Ratio.

    The ratio menu opens.

  2. Pick the matching ratio (16:9, 4:3, 2.35:1, or "Original") — watch the picture until shapes look correct.

    The picture is correct.

  3. 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.

NoteCrop removes bars by cutting the picture (no distortion); Aspect Ratio changes the shape. Use Crop when the file is correct but bars are unwanted.

Fix 3Disable auto-stretch / fit-to-window distortion

Stops distortion when resizing the window

  1. Go to Tools > Preferences > Video.

    Video settings open.

  2. Uncheck "Always fit video to window" (or set "Fit" to None) so the picture keeps its ratio.

    The window resizes without stretching.

  3. Save and restart, then resize the window to confirm.

    The picture letterboxes instead of stretching.

NoteWhen the option is off, VLC shows black bars inside the window instead of distorting — the correct behavior.

Fix 4Reset VLC preferences to defaults

Clears corrupted settings that cause crashes, black screens and audio issues

  1. Close VLC completely.

    No VLC process is running.

  2. Open a command prompt (Win+R → cmd) or terminal.

    A command line is available.

  3. Run: vlc --reset-config (Windows/Linux) — on macOS delete ~/Library/Preferences/org.videolan.vlc instead.

    VLC preferences are restored to defaults.

  4. Launch VLC and re-apply only the settings you actually need.

    VLC starts with clean settings.

NoteThis erases all custom preferences (including shortcuts and skins). Export your config first under Tools > Preferences > All > Interface if you want a backup.

Advanced fixes

Fix 1Fix the file’s SAR metadata with ffmpeg

Permanently corrects broken aspect-ratio flags

  1. 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).

  2. 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.

  3. Play the corrected file — VLC now shows it correctly without any setting.

    The file is fixed at the source.

NoteThis is lossless — only metadata changes. Use it for files you want permanently fixed.

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?
The fullscreen output can inherit a different ratio setting. Reset Aspect Ratio to Default and disable "Always fit video to window".
What is the difference between Aspect Ratio and Crop?
Aspect Ratio changes the shape of the picture (can distort); Crop removes parts of the frame (no distortion, but you lose edges). For black bars, Crop is correct.
My 2.35:1 movie has small black bars top and bottom — normal?
Yes — that is the movie’s intended aspect ratio on a 16:9 screen. Forcing it to fill the screen would cut or distort the image.
The picture is correct on my phone but stretched on my PC
The PC’s VLC has a global ratio override from an old session. Press A until "Default" — or reset preferences.

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.