broadcast: allow saving and loading of configurations

Issue #122 resolved
Saxon Milton created an issue

It would be useful if we could save and load youtube broadcast configurations so that we don’t have to fill out the broadcast setup form every time we start a stream. It’s suggested this be done using a Variable that contains JSON. This string could contain a series of broadcast configurations, for example:

[
  {
    "broadcastName": "...",
    "streamName": "...",
    "privacy": "...",
    "resolution": "..."
    "startTime": "...",
    "endTime": "...",
    "rtmpVar": "...",
    "actions": "...",
  },
  {
    ...
  }
]

Comments (2)

  1. Saxon Milton reporter

    This will now be done by saving variables for each broadcast under the scope of “Broadcast”. For example, if we create a broadcast with name “Cuttle Cam” the configuration will be saved in a variable with datastore name “Broadcast.Cuttle Cam”

  2. Log in to comment