Simple Jitter mirroring question

westwick's icon

Posted this in here because its musically based.

Howdy again.

Quick one this time. I'm using jit.dx.grab to display from a webcam and monitor a person for use as midi output but having the video feed is distracting because you move the opposite way when watching it.

I want to to flip the video output horizontally but can't find how to do this. I'm sure it's something simple if someone doesn't mind sparing a minute to explain how.

cap10subtext's icon

jit.dimmap @invert 0 1 if I can recall off the top of my head.

seejayjames's icon

you can also use jit.rota, if the x_zoom is -1 it will flip the matrix in the X direction. jit.dimmap is the most straightforward and probably faster, but jit.rota might have other options you could try.

westwick's icon

Thanks for the response!

@invert 0 1 turns it upside down, made me laugh.

Works perfecly with jit.dimmap @invert 1 0

Cheers!