Devices
Get Audio Devices
GET
http://recording_server:9000/api/devices/audio
Returns a list of available audio devices
Headers
Name
Type
Description
Authorization
string
API Token
{
"Audio": [
{
"Type": 2,
"Index": 0,
"Name": "Use embedded audio only"
},
{
"Type": 2,
"Index": 1,
"Name": "Line (NewTek NDI Audio)"
}
{
"Type": 2,
"Index": 6,
"Name": "Microphone (USB PnP Audio Device)"
},
{
"Type": 2,
"Index": 7,
"Name": "Microphone (Logitech BRIO)"
},
{
"Type": 2,
"Index": 8,
"Name": "PC Sounds (Loopback)"
}
]
}
Get Video Devices
GET
http://recording_server:9000/api/devices/video
Returns a list of available video devices
Headers
Name
Type
Description
Authorization
string
API Token
{
"Video": [
{
"Type": 0,
"Index": 0,
"Name": "DeckLink Duo 2"
},
{
"Type": 0,
"Index": 1,
"Name": "DeckLink Duo 2 (2)"
},
{
"Type": 0,
"Index": 3,
"Name": "NDI Receiver"
},
{
"Type": 0,
"Index": 6,
"Name": "Logitech BRIO"
}
]
}
Last updated