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:
CSS trick worked perfectly:
video {
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
}