Control Ontime from vMix

The most straightforward way to get Ontime synced with vMix is probably by using Ontime's HTTP API which provides easy access to the apps playback functions.

Adapting from this vMix forum post we see that a workflow could look like:

Dim client = WebRequest.Create("http://ONTIME-IP:4001/playback/start")
Dim response = client.GetResponse()

Remember to change ONTIME-IP with the IP address of the machine running the Ontime App (127.0.0.1 if the same)

From here you should be able to add the script as needed. Please follow vMix documentation for next steps

Last updated