POST/jack/start
Starts a jack process on the machine. This will send a response if the process is up & running.
Request
- application/json
Body
required
device string
This is the device name, if empty this defaults the default soundcard
inputChannels number
Default value: 2
These are the numbers of input channels
outputChannels number
Default value: 2
These are the numbers of output channels
sampleRate number
Default value: 48000
The samplerate 22050 | 32000 | 44100 | 48000 | 88200 | 96000 | 192000
bufferSize number
Default value: 256
The buffersize (frames/period) 16 | 32 | 64 | 128 | 256 | 512 | 1024 | 2048 | 4096
periods number
Default value: 2
The periods/buffer
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
message stringrequired
A message with clear information what's going on.
runningCommand string[]required
The current running command on the host.
{
"message": "string",
"runningCommand": [
"string"
]
}
Loading...