Share via

Mirror-video Effect

2026-06-02T10:40:07.0566667+00:00

How do I remove the mirror-video capture effect on my camera in Windows 11?

Windows for home | Windows 11 | Devices and drivers
0 comments No comments

2 answers

Sort by: Most helpful
  1. DaveM121 891K Reputation points Independent Advisor
    2026-06-02T11:16:27.34+00:00

    Windows does not have a setting to switch the mirror effect on the webcam.

    If you are using a built-in webcam on a laptop, the webcam usually has very basic functionality and the laptop manufacturer also does not provide a setting for that.

    What app are you using the webcam in, is that the Windows Camera app or are you using the webcam for online conferencing/meetings?

    Was this answer helpful?

    0 comments No comments

  2. AI answer

    2026-06-02T10:40:26.3733333+00:00

    In Windows 11 the mirror (flipped) view is controlled either by the app using the camera or by camera/effects settings, not by a single global Windows switch. Use these approaches:

    1. Check the app’s own camera settings Many apps (Teams, Zoom, browser-based tools, etc.) implement their own mirroring. Look in the app’s video/camera settings for options like “Mirror my video,” “Flip horizontally,” or “Preview mirroring” and turn them off. This is usually the primary control for what is seen on screen.
    2. Adjust system camera defaults (Windows Studio Effects and basic controls) If the device supports Windows Studio Effects or has vendor controls, adjust them in Camera settings:
    3. Select Start > Settings > Bluetooth & devices > Cameras.
    4. Under Connected cameras, select the camera in use.
    5. In the preview and Camera Effects section, turn off any effects that might change how the image is presented (for example, framing or creative filters). These defaults apply to apps that respect system camera settings.

    Camera Settings can also expose manufacturer “companion app” controls. If present, open that app from Related settings and look for any flip/mirror options and disable them.

    1. For developers: avoid or disable preview mirroring in code If a custom app is being used and it is mirroring the preview via the Windows camera APIs, disable that behavior:
    • The MediaCapture.SetPreviewMirroring(bool value) method controls horizontal mirroring of the preview stream. Passing false disables mirroring.
    • For UWP/XAML apps, the recommended approach is to control mirroring via the FlowDirection property on the CaptureElement instead of SetPreviewMirroring. Ensure FlowDirection is set so that the preview is not mirrored.

    If the app is web-based, mirroring may be applied via CSS transforms or the msHorizontalMirror property on the HTML <video> element; those need to be removed or disabled by the site/app developer.

    Because mirroring is app- and driver-controlled, if none of the above options are exposed, the only way to change the behavior is via that specific app’s settings or the camera manufacturer’s software.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.