Yes I took a look at the definition of that VID and see that it seems to be using a capability called webrtc for the video display. There is no associated presentation available.
{
"id": "webrtc",
"version": 1,
"status": "live",
"name": "webrtc",
"ephemeral": false,
"attributes": {
"sdpAnswer": {
"schema": {
"type": "object",
"properties": {
"value": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"sdp": {
"type": "string"
},
"turn_url": {
"type": "string"
},
"turn_user": {
"type": "string"
},
"turn_pwd": {
"type": "string"
}
},
"required": [
"id",
"sdp"
]
}
},
"additionalProperties": false,
"required": [
"value"
]
},
"enumCommands": []
},
"talkback": {
"schema": {
"type": "object",
"properties": {
"value": {
"type": "boolean"
}
},
"additionalProperties": false,
"required": [
"value"
]
},
"enumCommands": []
},
"supportedFeatures": {
"schema": {
"type": "object",
"properties": {
"value": {
"type": "object",
"additionalProperties": true,
"properties": {
"bundle": {
"type": "boolean"
},
"order": {
"type": "string"
},
"audio": {
"type": "string"
},
"video": {
"type": "string"
}
}
}
},
"additionalProperties": false,
"required": [
"value"
]
},
"enumCommands": []
},
"audioOnly": {
"schema": {
"type": "object",
"properties": {
"value": {
"type": "boolean"
}
},
"additionalProperties": false,
"required": [
"value"
]
},
"enumCommands": []
},
"stunUrl": {
"schema": {
"type": "object",
"properties": {
"value": {
"title": "URL",
"type": "string",
"pattern": "^(stun?):((?:[a-zA-Z0-9.-]|%[0-9A-F]{2}){3,})(?::(\\d+))?((?:\/(?:[a-zA-Z0-9-._~!$&'()*+,;=:@]|%[0-9A-F]{2})*)*)(?:\\?((?:[a-zA-Z0-9-._~!$&'()*+,;=:\/?@]|%[0-9A-F]{2})*))?(?:#((?:[a-zA-Z0-9-._~!$&'()*+,;=:\/?@]|%[0-9A-F]{2})*))?$"
}
},
"additionalProperties": false,
"required": [
"value"
]
},
"enumCommands": []
}
},
"commands": {
"sdpOffer": {
"arguments": [
{
"name": "id",
"optional": false,
"schema": {
"type": "string"
}
},
{
"name": "sdp",
"optional": false,
"schema": {
"type": "string"
}
}
]
},
"end": {
"arguments": [
{
"name": "id",
"optional": false,
"schema": {
"type": "string"
}
}
]
}
}
}
If only there was documentation or examples, I might be able to use it.