Horizontally flipping .getUserMedia's Webcam image stream

user8749260 picture user8749260 · Dec 10, 2017 · Viewed 11.1k times · Source

So I have been messing with this page: https://tutorialzine.github.io/pwa-photobooth/

Basically what it does is activate your webcam and lets you take a snapshot directly from the stream, I borrowed this for my web but the video stream is flipped and I want to mirror the video stream so it feels better.

Note: I am kind of a js newbie so an in depht explanation would be welcomed.

Here is the code, you MAY have to use Firefox instead of Chrome:

Answer

Pavel Evstigneev picture Pavel Evstigneev · May 4, 2018

CSS trick worked perfectly:

video {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}