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 (Jellyfin support is experimental — see Configuration)
- 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
macOS support uses a different video path: mpv's Swift backend does not
support --wid window embedding, so each cell renders through the libmpv
render API (vo=libmpv) into a QOpenGLWidget — the same architecture as
IINA/IPTVnator — with VideoToolbox hardware decode.
# 1. Clone
git clone https://github.com/tcconnally/hyperwall.git
cd hyperwall
# 2. Bootstrap (brew install mpv, creates .venv, installs deps, verifies libmpv)
./bootstrap.sh
# 3. Configure
cp config.example.ini config.ini # bootstrap does this if missing
open -e config.ini # fill in server_url, username, password
# 4. Run
./launch.sh
macOS notes:
- Requires Homebrew;
brew install mpvprovideslibmpv.dylib.launch.shexportsDYLD_FALLBACK_LIBRARY_PATHso python-mpv finds it (must be set before Python starts — don't skip launch.sh). - Multi-monitor fullscreen works best with System Settings → Desktop & Dock → Displays have separate Spaces enabled (default).
- G-Sync isolation and the .exe build are Windows-only; macOS runs script mode with CoreAudio + VideoToolbox.
- If cells show software decode or black frames, try
HYPERWALL_HWDEC=videotoolbox-copy ./launch.sh.
# 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.exe (recommended — enables G-Sync isolation)- Windows 10/11 with PowerShell 7+ — or — macOS (Apple Silicon/Intel) with Homebrew (experimental)
- Python 3.12+
- NVIDIA GPU with driver 551+ (Windows nvdec hardware decode); Apple Silicon uses VideoToolbox
- Emby server on local network
- NVIDIA Profile Inspector (optional — for G-Sync isolation, Windows only)
| 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_SERVER_URL |
Per-launch Emby endpoint override; leaves config.ini unchanged (use for LAN/public A/B) |
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_ISOLATED=1 |
Force G-Sync isolation on (bypass exe-name check) |
HYPERWALL_AUTO_TRANSCODE=0 |
Disable auto-transcode heuristic |
HYPERWALL_STALL_TIMEOUT_S |
Stall watchdog: flag a frozen stream after N s of no progress (default 20) |
HYPERWALL_WATCHDOG_MS |
Stall watchdog poll interval in ms (default 5000) |
HYPERWALL_CRASHLOOP_THRESHOLD |
Failures within the window before a cell is parked (default 5) |
HYPERWALL_CRASHLOOP_WINDOW_S |
Rolling window for the crash-loop guard (default 60) |
HYPERWALL_CRASHLOOP_COOLDOWN_S |
How long a parked cell waits before resuming (default 120) |
HYPERWALL_CACHE_BUDGET_MB |
Aggregate demuxer cache ceiling across all cells (default 8192) |
HYPERWALL_DEMUXER_PER_CELL_MB |
Desired per-cell demuxer cache before budget scaling (default 1024) |
HYPERWALL_PERFTRACE=1 |
Emit GUI loop-lag and slow-slot telemetry |
HYPERWALL_SOAK_MINUTES |
Run a self-terminating randomized soak for N minutes |
HYPERWALL_SOAK_PROFILE |
Soak mix: mixed (default), audio (mute/unmute focus), or advance |
HYPERWALL_SOAK_REPORT_DIR |
Write JSONL run events (start/sample/finish) to this directory |
For the reported mute/unmute jank, use the audio-focused launcher on the M5:
chmod +x soak_wall.sh
./soak_wall.sh 60It runs a 60-minute self-terminating wall session, keeps at most one cell
unmuted, and biases actions toward lazy-audio arm/relock transitions. Each run
creates soak_reports/<timestamp>/ with hyperwall.log, JSONL events,
vm_stat.log, nettop.log, and (where permitted) powermetrics.log. The
final hyperwall_stats_*.json records VideoToolbox/decode/drop/freeze totals.
To test a different hardware-decoder path, run a separate, otherwise identical
session, e.g. HYPERWALL_HWDEC=videotoolbox-copy ./soak_wall.sh 60; do not mix
profiles in one run.
pip install pyinstaller
build.batProduces hyperwall.exe — a versionless basename. G-Sync isolation is gated
on the hyperwall*.exe prefix (or HYPERWALL_ISOLATED=1), so the exe name is
stable across version bumps and the NVIDIA profile keeps matching.
The test suites are pure-logic and dependency-light — no PyQt/mpv/Emby, no
pytest. They run headless in CI (.github/workflows/repo-guards.yml) and
locally:
python tests/run_all.py| Suite | Covers |
|---|---|
run_repo_guards |
Package structure + version-drift guard (no hyperwall_v<N> / hardcoded version literals) |
test_reliability |
Stall watchdog, crash-loop guard, cache-budget scaling, retry→transcode→skip escalation |
test_urls |
Emby URL construction (incl. load-bearing static=true) + transcode heuristic boundaries |
test_config |
config.ini save/load round-trip, typed fields, frozen dataclass, scene presets |
test_playlist |
Multi-source playout: per-group de-dup, refill/reshuffle, group independence |
test_scenes |
Scene-preset serialization round-trip + malformed-input safety |
test_backends |
Emby/Jellyfin backend specs: Emby parity, Jellyfin auth-header + verified-live gate |
MIT