Direct Take
Video TransportDirect Take
Direct Take REST API
Direct Take REST API
  • Getting started with REST API
  • REST API Methods
    • Application
    • Devices
    • Sources
    • Destinations
    • Presets
    • Channels
  • External Sources
    • Product Page
    • Get Support
Powered by GitBook
On this page
  • Get Audio Devices
  • Get Video Devices
  1. REST API Methods

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"
    }
  ]
}
PreviousApplicationNextSources

Last updated 3 years ago