patch https://api.theo.live/channels/
Edit information about your channel and change the look & feel
This method allows you to update your channel. Note that all properties are optional! If you only want the change the fps
of your channel, it is sufficient to pass the following JSON object as data part of your request:
{
"streamConfig": {
"fps": 25
}
}
The other values will stay as is. Another example: if you want to change the colors that your player is using, you'll only need to pass the customization.colors
object. Here, you can even choose to only edit the secondary
color by not passing the primary
and tertiary
one.
{
customization: {
colors: {
primary: "#9238D3",
secondary: "#9238D3",
tertiary: "black"
}
}
}
Configure ABR, bitrate, resolution, fps, DRM, multi-audio using the streamConfig
object.