Skip to content

Outputs

Matthew Martin edited this page Jun 12, 2020 · 1 revision

/x-epi/outputs

GET

Returns the possible audio outputs on the system.

HTTP Status Code: 200

Body: application/json

[
    {
        "name": string - the name of the device i/o
        "samplerate": integer - the default sample rate for the device i/o in Hz
        "version": integer
        "input":
        {
            "channels": integer - number of audio input channels this device i/o supports
            "latency":
            {
                "high": integer - default high latency value in seconds
                "low": integer - default low latency value in seconds
            }
        }
       "output":
        {
            "channels": integer - number of audio output channels this device i/o supports
            "latency":
            {
                "high": integer - default high latency value in seconds
                "low": integer - default low latency value in seconds
            }
        }
    },...
]    
Clone this wiki locally