Hello,
Does anyone have experience with using Python to change the file path of a MovieFileIn? I want to use OSC input to change the file path of MovieFileIn e.g. if channel 1 has a value of 1, import blueButterfly.jpg otherwise import yellowButterfly.jpg.
So far in an OSC DAT I have this working:
def onReceiveOSC(dat, rowIndex, message, bytes, timeStamp, address, args, peer):
if op('oscin1')['sensor0']==0:
print("uno")
else:
print("dos")
return
Thank you!