Hello,
I am having an issue where I am using a TOP to CHOP to read data and I am trying to send it to an OSC out. However, certain CHOPs (it seems to be ones with time slicing) do not receive the data before a certain frame on the timeline. The OSC out CHOP doesn’t have an option to turn off time slicing so it doesn’t receive the data before about frame 450. I have tried buffering the data before it, resampling it, and force cooking it but none of it worked. Any help would be appreciated. Thanks!
Here is the file. The issue lies with oscout1 and how it only triggers from the logic3 chop from about frame 400-600. The rest of the time it does not seem to be taking inputs. Thanks for your help!
Hi @trainor04,
the OSC Out CHOP will send the current sample which is the value of the input chop’s channel at the current time.
So it will take your input and evaluate it at the current frame / time and use that sample.
So what value it sends is totally depending on your input. In your case the values comes from the graphic which is mostly black except for the center part - hence the OSC Out CHOP will mostly send 0
. You can follow the timebar in the CHOP graph of the Logic CHOP by activating the viewer and hitting the t key or using the r-click menu, selecting timebar
from the rclick menu.
What are you trying to do?
Hope this helps a bit.
cheers
Markus