Simple Jitter mirroring question
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.
jit.dimmap @invert 0 1 if I can recall off the top of my head.
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.
Thanks for the response!
@invert 0 1 turns it upside down, made me laugh.
Works perfecly with jit.dimmap @invert 1 0
Cheers!