jit.ndi.send mismatch type
Hi everyone,
I try to send my render from my jit.world to Millumin via jit.ndi.send with output_matrix enable by I have error message : mismatch type for jit.ndi.send.
Anybody know how to fix it ?
Thank you a lot !
Best regards
John
Make sure you are sending 4 planes matrices of type char out of your [jit.world]. Maybe you set your world so it outputs float32 matrices, hence the error message you see.
And just to double check you actually need NDI for this instead of Syphon or Spout, which will be much more performant on a single machine. There are also NDI-Spout and NDI-Syphon tools if the jit-ndi solution isn't working. But yes, likely you need to force char output type.
Thank you a lot !!
If I add [jit.matrix @adapt 0 @dim 1280 720] between output of jit.world and jit.ndi.send it's working.
If I'll check Syphon if need it !!
Best !