just:in linux version 5.5 provides 3rd party systems the ability to trigger start/split/stop recording commands by using the TOA XML based protocol. In this way external systems can take control over just:in linux channels and the Just Control application can still be used for monitoring purposes if needed.
Developers can start by opening a socket connection to the IP address of the just:in linux server and the given channel port (see Channel Settings - Just Control Configuration Panel). Please be aware that every channel of a just:in linux server must have a different channel port and that the channel must be running in order to establish a connection.
...
Info |
---|
Commands have to end with a null terminator (e.g. “\0”). |
Start Recording
Code Block | ||
---|---|---|
| ||
<requestRecordingWithMetadata channel="" proposedFilename=""><metadata></metadata></requestRecordingWithMetadata> |
...
Code Block | ||
---|---|---|
| ||
<split channel=""></split> |
Note that the split process will be handled frame accurately to prevent any frame loss during Split Recording operations.
Stop Recording
Code Block | ||
---|---|---|
| ||
<stopRecordingWithMetadata channel=""><metadata></metadata></stopRecordingWithMetadata> |
...