Output signals to file

I’ve got multiple signals coming in over OSC. Just some time series data from some physical computing.

I want to play a video and record the OSC information (which i’m currently outputting to trail).

I’d like to then be able to play back the video and the OSC information synchronized with the original video playing. What is the best way to save that file?

I’d like to do a bunch of such sessions so each time we play the video we get a different set of OSC inputs and save that to a different file.

Thanks in advance!

You can just call .save(‘filename.bclip’) on the Trail CHOP and that will save it to a file. Then you can use a File In CHOP to load it back, and a Lookup CHOP to control the playback from that file.

Thanks! I’ll try that.