Hello, I am needing some help with creating a custom HTTP provider that has only the required output as shown below. It needs to show a list for every active live stream currently streaming in an JSON output. The following is the format I need below. A bonus would be if I could also include the audio status of the stream I.E. if it has audio or mute/not have audio if possible, but that is not a major requirement. Now I know a lot this already exist in numerous providers. I am needing one that is consolidated into one provider so I only have to make one call for simplicity purposes for my project.
{
strsvr-01 [
{
"name":"name",
"streamName":"streamname",
"applicationName":"AppName",
"isConnected":true,
"totalConnections":1,
},
{
"name":"name",
"streamName":"streamname",
"applicationName":"AppName",
"isConnected":true,
"totalConnections":1,
}
]
}