Get.list.playlists:

Return the list of playlists with properties

Property Description
name the name of the timeline
objectType type of object, here “playlist”
uiColor color of the timeline
uuid unique uuid to control the playlist
timecode current timecode of the playlist
play bool to indicate if the timeline is in state play
grandMasterFader current value of the grand master fader of this timeline
audioMaster current value of the audio master of this timeline

Example:

{"jsonrpc":"2.0","method":"get.list.playlists"}

Get.object.playlist:

Return the properties of one playlist.
You can use one of the following parameters:

Param B1
uuid unique uuid to control the playlist
name name of the timeline. if several timeline with same name, it will return the first one
Property Description
name the name of the timeline
objectType type of object, here “timeline”
uiColor color of the timeline
uuid unique uuid to control the timeline
timecode current timecode of the timeline
play bool to indicate if the timeline is in state play
grandMasterFader current value of the grand master fader of this timeline
audioMaster current value of the audio master of this timeline

Example:

{"jsonrpc":"2.0","method":"get.object.playlist", "params": {"uuid": "{b9ff8f5b-5a15-4422-9e25-b8eeed9f8f9a}"}}

Set.property.playlist:

Use this command to set a playlist property.

It is possible to set these properties:

Property Description
name the name of the playlist
uiColor color of the playlist

Example:

{"jsonrpc":"2.0","method":"set.property.playlist", "params":{"uuid":"{b9ff8f5b-5a15-4422-9e25-b8eeed9f8f9a}","property":"on","value":true}}

Doaction.playlist:

Use this command to do an action on a playlist.

You can use the following actions:

action Description Parametrer
prev launch the previous cue
next launch the next cue
goto launch the cue with index index (first cue is index 1)
preload preload the cue with index index (first cue is index 1)
play set the playlist in play state at the current timecode
locate set the playlist in pause state at the current timecode
grandMasterFader set the value of the grand master fader with a fade time value(%) duration(in ms)
audioMaster set the value of the audio fader with a fade time value(%) duration(in ms)

Example:

 {"jsonrpc":"2.0","method":"doaction.playlist", "params":{"uuid":"{b9ff8f5b-5a15-4422-9e25-b8eeed9f8f9a}","action":"goto","cue":3}}

Need more help with this?
Don’t hesitate to contact us here.

Thanks for your feedback.