Multi-channel audio monitoring, solo channels, remote control, and LAN access.
Windows 10 or later (x64) -- ~55 MB installer
Control OMT Monitor from Bitfocus Companion using the built-in Generic HTTP module. Map Stream Deck buttons to monitor controls -- no custom module required.
Setup
1. In Companion, go to Connections and add Generic HTTP.
2. Set the base URL to your monitor's IP:
http://<your-pc-ip>:5280
3. Create buttons and assign HTTP POST actions to the endpoints below.
| Action | Endpoint | Body |
|---|---|---|
| Mute | POST /api/remote/mute |
-- |
| Unmute | POST /api/remote/unmute |
-- |
| Toggle Audio | POST /api/remote/audio |
-- |
| Audio On | POST /api/remote/audioOn |
-- |
| Audio Off | POST /api/remote/audioOff |
-- |
| Set Volume | POST /api/remote/volume |
{"volume": 0-100} |
| Toggle Fullscreen | POST /api/remote/fullscreen |
-- |
| Fullscreen On | POST /api/remote/fullscreenOn |
-- |
| Fullscreen Off | POST /api/remote/fullscreenOff |
-- |
| Select Channel Pair | POST /api/remote/channels |
{"channels": "3-4"} |
| Solo Channel | POST /api/remote/channels |
{"channels": "3-3"} |
| Switch Source | POST /api/remote/source |
{"sourceId": "01"} |
| Connect Source | POST /api/connect |
{"sourceId": "..."} |
| Disconnect All | POST /api/remote/disconnect |
-- |
| Disconnect | POST /api/disconnect/{id} |
-- |
| List Sources | GET /api/sources |
-- |
| Health Check | GET /api/health |
-- |
All endpoints are available on your LAN at http://<your-pc-ip>:5280