Fullscreen multi-monitor video wall for Emby media servers. Select displays and libraries in a wizard, and Hyperwall fills each monitor with a grid of hardware-accelerated video cells powered by libmpv.
- Multi-monitor — each monitor gets its own fullscreen window with a configurable grid of video cells (1x1 to 6x6)
- libmpv backend — hardware-accelerated decode via nvdec/d3d11 (NVIDIA Blackwell), 240 Hz G-Sync compatible, HDR hinting
- Emby integration — streams directly from your Emby server with auto-transcode for 4K sources, favorites filtering, and per-cell tag/favorite controls
- Web remote — built-in dark-mode control page on port 8585 (phone/tablet — no app install needed)
- G-Sync isolation — per-app NVIDIA Profile Inspector profile disables VRR for Hyperwall only, avoiding mixed-FPS jitter
# 1. Clone
git clone https://github.com/tcconnally/hyperwall.git
cd hyperwall
# 2. Bootstrap (installs deps, downloads mpv-2.dll, builds exe)
pwsh -ExecutionPolicy Bypass -File .\bootstrap.ps1
# 3. Configure
Copy-Item config.example.ini config.ini
notepad config.ini # fill in server_url, username, password
# 4. Run
.\launch.bat
# or: python hyperwall.py
# or: .\hyperwall_v8.exe (recommended — enables G-Sync isolation)- Windows 10/11 with PowerShell 7+
- Python 3.12+
- NVIDIA GPU with driver 551+ (for nvdec hardware decode)
- Emby server on local network
- NVIDIA Profile Inspector (optional — for G-Sync isolation)
| Key | Action |
|---|---|
C |
Toggle controls visibility |
Space |
Global pause/resume |
F |
Favorites filter |
A |
All-items filter |
S |
mpv stats overlay |
Esc |
Shutdown |
All endpoints under /api/:
| Endpoint | Method | Description |
|---|---|---|
/api/status |
GET | Full wall state |
/api/pause |
POST | Toggle global pause |
/api/next/<n> |
POST | Next video on cell n |
/api/prev/<n> |
POST | Previous video on cell n |
/api/loop/<n> |
POST | Toggle loop on cell n |
/api/mute/<n> |
POST | Toggle mute on cell n |
/api/filter |
POST | Set filter (all/favorites) |
/api/controls |
POST | Toggle controls |
/api/shutdown |
POST | Shut down wall |
hyperwall.py → hyperwall/app.py → WallController
├── SetupWizard (monitor + library picker)
├── Per-monitor QMainWindow (fullscreen)
│ └── Grid of VideoCell widgets
│ └── mpv.MPV embedded via wid=
├── ContentLoader → Emby REST API
├── web.py (Flask remote on :8585)
└── nvidia.py (G-Sync per-app disable)
config.ini (copied from config.example.ini):
[Login]
server_url = http://192.168.1.100:8096
username = your_username
password = your_password
[Settings]
cleanup_on_startup = falseEnvironment variables:
| Variable | Effect |
|---|---|
HYPERWALL_WEB=1 |
Enable web remote on port 8585 (off by default) |
HYPERWALL_STATS=1 |
Enable per-cell playback stats |
HYPERWALL_HWDEC |
Override hardware decoder (nvdec, d3d11va, etc.) |
HYPERWALL_VO |
Override video output (gpu-next, gpu) |
HYPERWALL_NO_RELAUNCH=1 |
Skip exe re-launch (script mode) |
HYPERWALL_AUTO_TRANSCODE=0 |
Disable auto-transcode heuristic |
pip install pyinstaller
build.batProduces hyperwall_v8.exe — the basename the NVIDIA profile targets.
MIT