How to get the video not-mirrored when Skype video chat?

2

2

I work with my team using Skype and view their whiteboard but all text are mirrored. How can I get it fixed?

Nam G VU

Posted 2010-10-20T11:29:44.623

Reputation: 10 255

Answers

2

Here's a way I eventually found that works.

It's independent of camera drivers or manufacturer, to a large extent.

The idea is to use software that takes input from the webcam, applies some transformations and then offers the output as a virtual webcam.

A virtual webcam is something that exists purely in software, but programs (which query the DirectShow API on Windows) see it in the list of installed webcams and can interact with it just as they would with a physical webcam.

I found an open-source program that provided the necessary functionality for me: Webcamoid.

How to use it is self-explanatory, except that to get the mirroring transformation, choose the filter called "Matrix Transformation" and specify a matrix like:

-0.75    0    0
0        1    0

(For some reason, to get the scaling right, I had to use "-0.75", but on some systems it would probably be just "-1".)

For a flip around the other axis, i.e. to fix it if the video is upside-down, change the "1" in the second row to "-1".

And it works: after enabling the virtual webcam in Webcamoid and restarting Skype, we see the virtual webcam in the list of webcams under Skype's Options > Video.

Webcamoid has to be kept running for this to work.

The downside is that this isn't a set-and-forget solution: one has to launch Webcamoid and set up the filter before every Skype session.


Miscellaneous notes

(Actually, for me this didn't work the first time. I had to restart Webcamoid and Skype a couple of times, tear down the virtual webcam and set it up again. But after this minimal settling in, it works well. Also, after certain combination of actions with its interface, Webcamoid crashes, but I just avoid taking those actions. When it runs steadily in the background, it seems to be quite stable and reliable.)

Another open-source program that seems to be able to solve the problem, using a similar approach, is ucanvcam. However, when I start it up, it immediately crashes on my computer and I haven't investigated why. But maybe the bugs would be fixed by the time you read this.

Evgeni Sergeev

Posted 2010-10-20T11:29:44.623

Reputation: 1 704

1

Easy,go to Tools/Options... Video Settings/WebCam Settings Image Mirror Flip :D

TweakFix

Posted 2010-10-20T11:29:44.623

Reputation: 471

1The "Webcam settings" button brings up a device-dependent dialog: a different one is provided by each manufacturer. For example, on one computer I see a Logitech-branded window, with "Image orientation: ⨀ Normal ⃝ Mirrored". On another computer I see a completely differently looking window entitled "Video Capture Filter Properties" with a tab called "Video Proc Amp" and nowhere to fix the mirroring that it's doing. – Evgeni Sergeev – 2017-10-03T10:50:25.900

5It seems to depend on the webcam device we use. Mine doesn't have the Image Mirror Flip option at all. – Nam G VU – 2010-10-21T04:18:01.800

Strange, what do you see in Webcam Settings then? – TweakFix – 2010-11-24T20:00:59.623