OSC Out CHOP
Summary
TheOSC Out CHOP sends all input channels to a specified network address and port. Each channel name and associated data is transmitted together to the specified location. TouchDesigner time stamps all outgoing Open Sound Control messages with the time of the outgoing frame relative to the system time when the first message was sent. OSC CHOPs in TouchDesigner use the UDP transport protocol.
OSC Out will either send all the channels each cook or it will only send each channel depending on if it has changed at all since the last time it was sent. This is determined by the Send Events Every Cook flag.
OSC bundles allows you to send a group of messages in a single command rather than as separate, individual messages. The OSC Out DAT has a sendOSC()
function that will accept a list of messages and send as a bundle.
See also OSC In CHOP, OSC Out DAT, OSC In DAT, iOS and OSC, Touch Out CHOP, UDP Out DAT, TCP/IP DAT.
NOTE for Windows OS - If experiencing connection issues make sure Windows Firewall is disabled.
Parameters - OSC Out Page
active
- While On, the CHOP sends information to the network port. When Off, data is not sent.
protocol
- ⊞ - Selects the network protocol to use. Refer to the Network Protocols article for more information.
- Messaging (UDP)
msging
-
- Multi-Cast Messaging (UDP)
multicastmsging
-
- Reliable Messaging (UDT Library)
reliablemsging
-
netaddress
- The network address of the server computer. This address is a standard WWW address, such as 'foo' or 'foo.bar.com'. You can put an IP address (e.g. 100.123.45.78). If you put "localhost", it means the other end of the pipe is on the same computer.
port
- The port which OSC Out will send packets to.
localaddress
- Specify an IP address to send from, useful when the system has mulitple NICs (Network Interface Card) and you want to select which one to use.
maxsize
- Specifies the maximum number of messages OSC Out will try to send at a single time.
maxsizeunit
- Select the units to use for this parameter, Samples, Frames, or Seconds
cookalways
- Specifies that this CHOP should be cooked every frame regardless of CHOPs below it are cooking.
numericformat
- ⊞ - Choose the data format to send data between 32-bit integer, 32-bit float, or 64-bit double.
- Int (32 bit)
int
-
- Float (32 bit)
float
-
- Double (64 bit)
double
-
format
- ⊞ - Specify how to format the outgoing messages.
- Sample
sample
- Sends the current sample in each channel.
- Time Slice
timeslice
- Sends all samples of the current Time Slice in each channel.
- Transpose
transpose
- Sends the first sample in each channel transposed together into a single multi-sample channel.
maxbytes
- Limits the size of the outgoing message packets and splits up the message accordingly.
sendevents
- When on, OSC Out will send all channels every cook regardless if the value has changed. When off, OSC Out only sends data which has changed.
Parameters - Common Page
timeslice
- Turning this on forces the channels to be "Time Sliced". A Time Slice is the time between the last cook frame and the current cook frame.
scope
- To determine which channels get affected, some CHOPs use a Scope string on the Common page. See Pattern Matching.
srselect
- ⊞ - Handle cases where multiple input CHOPs' sample rates are different. When Resampling occurs, the curves are interpolated according to the Interpolation Method Option, or "Linear" if the Interpolate Options are not available.
- Resample At First Input's Rate
first
- Use rate of first input to resample others.
- Resample At Maximum Rate
max
- Resample to the highest sample rate.
- Resample At Minimum Rate
min
- Resample to the lowest sample rate.
- Error If Rates Differ
err
- Doesn't accept conflicting sample rates.
exportmethod
- ⊞ - This will determine how to connect the CHOP channel to the parameter. Refer to the Export article for more information.
- DAT Table by Index
datindex
- Uses the docked DAT table and references the channel via the index of the channel in the CHOP.
- DAT Table by Name
datname
- Uses the docked DAT table and references the channel via the name of the channel in the CHOP.
- Channel Name is Path:Parameter
autoname
- The channel is the full destination of where to export to, such hasgeo1/transform1:tx
.
autoexportroot
- This path points to the root node where all of the paths that exporting by Channel Name is Path:Parameter are relative to.
exporttable
- The DAT used to hold the export information when using the DAT Table Export Methods (See above).
Operator Inputs
- Input 0: -
Info CHOP Channels
Extra Information for the OSC Out CHOP can be accessed via an Info CHOP.
Common CHOP Info Channels
- start - Start of the CHOP interval in samples.
- length - Number of samples in the CHOP.
- sample_rate - The samplerate of the channels in frames per second.
- num_channels - Number of channels in the CHOP.
- time_slice - 1 if CHOP is Time Slice enabled, 0 otherwise.
- export_sernum - A count of how often the export connections have been updated.
Common Operator Info Channels
- total_cooks - Number of times the operator has cooked since the process started.
- cook_time - Duration of the last cook in milliseconds.
- cook_frame - Frame number when this operator was last cooked relative to the component timeline.
- cook_abs_frame - Frame number when this operator was last cooked relative to the absolute time.
- cook_start_time - Time in milliseconds at which the operator started cooking in the frame it was cooked.
- cook_end_time - Time in milliseconds at which the operator finished cooking in the frame it was cooked.
- cooked_this_frame - 1 if operator was cooked this frame.
- warnings - Number of warnings in this operator if any.
- errors - Number of errors in this operator if any.
TouchDesigner Build: