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:
- 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.
- 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:
- Select Start > Settings > Bluetooth & devices > Cameras.
- Under Connected cameras, select the camera in use.
- 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.
- 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: