Files
VoiceStudio/docs/install/linux.md
T
Palash DebnathandClaude Opus 5 41722afe3b refactor(launchpad): quieter, borderless design refresh (#1515)
* refactor(launchpad): quieter, borderless design refresh

The launchpad carried decoration from an earlier direction: icon chips,
corner-hung count badges, a permanently visible filled arrow, uppercase
mono card titles, and a dotted stipple divider — plus a frame that had
been invisible since the app-wide border tokens were zeroed.

Rework it around what the borderless direction actually implies:

- Feature tiles get a whisper-faint surface instead of a dead frame, and
  read as three bands (bare glyph + count / title + arrow / description).
  `--card-hue` is spent sparingly — the glyph at rest, the surface, count
  and arrow only once raised. Titles move to sans sentence case; counts
  are plain tabular numerals. Lift softened 4px -> 2px, coloured glow ->
  neutral shadow, plus an explicit focus ring and a staggered entrance.
- Hero drops the boxed "646" pill and the filled A/B-Compare button for
  quiet type, with a hairline standing in for the separation.
- Section labels trade the dotted stipple for a single fading hairline;
  rows are transparent until hover and reveal "Open" on hover/focus (it
  stays in the DOM, so AT and keyboard always reach it).
- Hero, tiles, recent files, callout and project lists now share one
  1180px column — previously only the top half was capped, so lists ran
  edge-to-edge on a wide display while the deck stayed centred.

Two bugs found and fixed while doing it:

- Buttons that had `border border-solid border-transparent` removed fell
  back to the UA default border and rendered a visible 1px outline. They
  now carry `border-0` explicitly.
- `.lp-animate` used `animation-fill-mode: both`, so after the entrance
  it kept owning `transform` — and animation-origin declarations outrank
  normal ones, which silently killed the card hover lift. Now `backwards`,
  which still holds the from-state through the stagger delay.

Also drops CSS the page has not rendered since #904: the cursor-spotlight
layer, the breath ring, and the per-card waveform strip.

Verified with headless renders at 1600/1280/940 and the empty state.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

* fix(dictation): decode Wayland portal signals and show the capture pill

The GlobalShortcuts portal declares Activated/Deactivated as
(o session, s shortcut_id, t timestamp, a{sv} options). We decoded the
timestamp as u32, so zbus rejected every signal with

  Signature mismatch: got `(osta{sv})`, expected `(osua{sv})`

and the press was dropped as an invalid signal. Registration succeeded
and the desktop even reported the bound chord back, so the hotkey looked
wired up while doing nothing at all — on every Wayland compositor, for
the whole life of the feature (#1490). Decode the 64-bit timestamp, and
keep the 32-bit spelling as a fallback so a non-conforming portal
degrades to working rather than to silence.

With presses arriving, the second half of the failure showed: nothing
had shown the widget window since it became a hidden recorder host, so a
capture ran with no pill on screen — and a mic or Accessibility failure
rendered into a window nobody could see. Add show_dictation_pill, which
bottom-centres the capsule on the monitor under the pointer and shows it
without taking focus (Windows keeps SW_SHOWNOACTIVATE so paste still
lands in the user's document), and call it from the widget for every
state but idle. Wayland denies clients their own placement, so the
compositor picks the spot there; the pill still appears.

dispatch_dictation_capture now logs whether a press was emitted or
queued — a press that reaches Rust and produces nothing was otherwise
indistinguishable from one the compositor never delivered.

Tests: portal signals decode at both timestamp widths (the 64-bit case
fails before this change with the exact production error); pill
placement centres, respects a second monitor's origin, and clamps rather
than going off-screen; the widget shows for a state needing the user,
stays hidden while idle, and never shows for a press that arrives while
dictation is disabled.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

* chore: sync in-progress workspace changes

Uncommitted work already in the tree, checkpointed so the branch matches
the local machine:

- Remote GPU workers: join-from-the-app flow, one-time secrets, QR join
  codes, a Compute control in the status bar, and the device-list
  Workers panel (#1516)
- Model Catalogue workspace, with Settings pointing at it
- Settings sidebar search and keyboard navigation
- Demo assets for dubbing, dictation and voice design, plus the scripts
  that render them
- Backend: validation-error handling, ASR request-path degradation, and
  the accompanying tests
- CHANGELOG entries for the above and for the Wayland dictation fix

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

* fix(tests): follow Engines to the Model Catalogue, and green the sweep

- test_supertonic3 asserted the license gate points at "Settings" while
  the engine now names Model Catalogue → Engines, which is where the
  accept button actually lives. The assertion follows the move; what it
  pins is unchanged — the hint must name a place the user can reach it.
- Carries the CJK allowlist entries for the rendered dub bundle (#1517)
  and the regenerated route snapshot for /workers/agent (#1516), both of
  which this branch inherits from the workspace sync.
- docs/install/linux.md: the dictation capsule is bottom-anchored
  everywhere except Wayland, where the protocol gives applications no
  say in their placement. Documented rather than left as a surprise
  (CodeRabbit).

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

* ci: stop a flaky dependency fetch from failing green runs

en-core-web-sm resolves to a direct GitHub release URL, and github.com
intermittently answers `http2 error: refused stream before processing
any application logic`. uv's own three retries all land within the same
few seconds and fail together, so the whole job dies on a dependency
that has nothing to do with the change under test — it cost #1518 and
#1517 an otherwise-green run tonight.

Two changes: back off between whole `uv sync` attempts, which is what
actually clears it, and pass --no-sync to the pytest steps. `uv run`
re-resolves the environment before running, so every test step was a
fresh chance to hit the same fetch even though the install step had
already synced — that is exactly how #1518 failed, in the isolated
backend/tests step, with all 5467 tests already passed.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

* ci: one retry seam for every uv sync, not just the job that failed last

en-core-web-sm resolves to a direct GitHub *release* URL rather than a
package index, and github.com intermittently answers `http2 error:
refused stream before processing any application logic`. uv's own
retries all land inside the same ~10 seconds and fail together, so a job
dies on a dependency unrelated to the change under test. Tonight that
cost four otherwise-green runs across #1515, #1517 and #1518 — and the
first fix only covered the Tests job, so the next failure simply moved
to Smoke (Linux), which syncs separately.

The fetch is per-job, so the fix has to be per-job: scripts/uv-sync-retry.sh
backs off between whole attempts (15s, 45s, 90s) and every workflow that
syncs now goes through it — ci.yml (tests + the platform matrix),
release.yml, security.yml, evals.yml. It still fails loudly after four
attempts, so a genuinely broken lockfile is not disguised as a flake.

The Tests job also lacked the UV_HTTP_TIMEOUT / UV_HTTP_RETRIES the smoke
matrix has always set, which is part of why it was the one that kept
dying; it has them now.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

* test(ci): pin the Intel-Mac contract by intent, not by command spelling

test_ci_verifies_intel_mac_as_the_documented_remote_only_host asserted
the literal line `run: uv sync --extra pockettts`, so routing every sync
through scripts/uv-sync-retry.sh read as a broken Intel-Mac contract. The
contract it exists to protect is that the pockettts extra installs ONLY
on backend_supported legs — which the regex now pins, while leaving how
the sync is invoked free to change.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

* ci: keep every uv run out of the resolver, and bound the retry budget

CodeRabbit, #1517:

- `uv run` re-resolves before running, so the smoke suite, the
  worker-artifact tests, the release test run and the eval run were each
  a fresh chance to hit the flaky direct-URL fetch outside the retry
  loop. All of them pass --no-sync now; the environment is already
  synced by the step that owns the retries. security.yml's
  `uv run --with pip-audit` is deliberately left alone — it layers an
  ephemeral package rather than running the project's own tests.
- The retry count multiplied uv's own budget (UV_HTTP_RETRIES=5 with a
  120 s timeout on the smoke matrix). Three attempts and 60 s of total
  backoff outlast the refusals actually observed while staying well
  inside the jobs' timeout-minutes.
- The Intel-Mac contract test pinned the smoke command literally too, so
  --no-sync tripped it exactly like the sync line did. Same fix: assert
  the contract (smoke runs only on backend_supported legs), not its
  spelling.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-12 23:46:07 +00:00

18 KiB

VoiceStudio — Install on Linux

This page is self-contained: follow it top to bottom and you'll end up with a working VoiceStudio install on a Debian / Ubuntu / Fedora / Arch host.

Prerequisites

Using the AppImage

  • Linux x86_64 with a desktop session (X11 or Wayland) capable of running a Tauri / WebKitGTK app.
  • ~10 GB free disk for the app, its Python environment, and model weights.
  • Optional: an NVIDIA driver for CUDA GPU acceleration — the app runs CPU-only without one. For AMD GPUs see AMD GPU (ROCm). That's it — Python, FFmpeg/FFprobe, yt-dlp, and the model weights are bundled or bootstrapped by the app itself on first launch. No toolchain needed. (If no FFmpeg resolves anywhere, the app downloads its own checksummed static build in the background during setup; Settings → Audio tools shows exactly which binaries are in use and lets you override them or update yt-dlp.)

Building from source

Everything above, plus the toolchain:

  • gitsudo apt install git (Debian/Ubuntu), sudo dnf install git (Fedora), or sudo pacman -S git (Arch).

  • curl — usually preinstalled; used by the Bun and rustup install one-liners below.

  • Python 3.11+ — typically sudo apt install python3.11 on Debian/Ubuntu, sudo dnf install python3.11 on Fedora, or already installed on Arch.

  • Buncurl -fsSL https://bun.sh/install | bash.

  • Rust / Cargocurl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh or via your package manager (e.g., sudo apt install rustc cargo). If you use rustup, reopen the shell or source "$HOME/.cargo/env" before running bun run desktop-prod.

  • GTK/WebKit deps for the Tauri shell:

    # Debian / Ubuntu
    sudo apt-get update
    sudo apt-get install -y \
      libwebkit2gtk-4.1-dev libgtk-3-dev libpango1.0-dev libcairo2-dev \
      libsoup-3.0-dev libgdk-pixbuf-2.0-dev \
      libayatana-appindicator3-dev librsvg2-dev libssl-dev libxdo-dev \
      libasound2-dev build-essential curl wget file
    
    # Fedora
    sudo dnf install webkit2gtk4.1-devel libappindicator-gtk3-devel librsvg2-devel openssl-devel
    
    # Arch
    sudo pacman -S --needed base-devel webkit2gtk-4.1 libayatana-appindicator librsvg openssl xdotool
    
  • Optional: a Hugging Face token for diarization + the larger TTS engines (see docs/setup/huggingface-token.md).

Install (from source)

git clone https://github.com/debpalash/VoiceStudio.git
cd VoiceStudio
bun install
source "$HOME/.cargo/env"  # only needed in a shell opened before rustup finished
bun desktop               # development build with hot reload

Use bun run desktop-prod instead when you need to build and launch the production bundle. Both commands create the Python environment via uv, sync dependencies, and start the backend automatically; do not start the backend in a second terminal.

The first Rust build takes longer because Cargo compiles the Tauri shell. If it fails with Package gdk-3.0 was not found, pango.pc missing, libsoup-3.0 missing, or javascriptcoregtk-4.1 missing, install the complete Debian/Ubuntu package block above. Those messages mean the development libraries are absent, not that PKG_CONFIG_PATH needs changing. Verify them with:

pkg-config --exists \
  gdk-3.0 pango cairo libsoup-3.0 javascriptcoregtk-4.1 gdk-pixbuf-2.0 \
  && echo "Tauri system libraries are ready"

The first app launch downloads model weights on demand. Subsequent launches reuse the Rust build, Python environment, and installed models.

Wayland dictation shortcut

System-wide dictation on Wayland uses the standard org.freedesktop.portal.GlobalShortcuts interface. Your desktop must run xdg-desktop-portal and a portal backend that implements that interface. The desktop owns the consent dialog and may let you replace VoiceStudio's preferred key combination.

VoiceStudio binds the replacement before saving a changed shortcut. If consent is declined or the portal is unavailable, Settings keeps the previous shortcut and reports the registration failure. The configured shortcut still works while the VoiceStudio window is focused.

While a dictation is running, VoiceStudio shows a small always-on-top capsule. It sits near the bottom of the screen your pointer is on — except on Wayland, where the protocol gives applications no say in their own placement and the compositor decides where it appears. The capsule works the same either way; only its position is out of the app's hands there.

If the global shortcut stops working, restart your desktop's portal service, then save the shortcut again in Settings → Hotkey to reopen consent. Portal packages and support vary by desktop; use the backend recommended by your distribution rather than running multiple portal backends in the same session. See the portal project's service integration checks and the Arch Linux backend compatibility table for concrete service and desktop-backend checks.

Install (AppImage)

Download the latest AppImage from the Releases page, make it executable, and run:

chmod +x VoiceStudio.Studio_*.AppImage
./VoiceStudio.Studio_*.AppImage

No FUSE? Use --appimage-extract-and-run:

./VoiceStudio.Studio_*.AppImage --appimage-extract-and-run

.deb package

Not currently published: .deb bundling is disabled in the release pipeline because of a tauri-cli bug (Failed to create control scripts) — see the comment in .github/workflows/release.yml for the tracking note. The AppImage above is the supported Linux install path until a tauri-cli version resolves it. apt install-able .debs shipped before v0.3 (see .deb ffprobe conflict below) if you're upgrading from one of those.

The desktop app uses these canonical paths (kept in sync with scripts/desktop-prod.sh by the docs-drift CI gate):

APP_ID="com.debpalash.omnivoice-studio"
APP_NAME="VoiceStudio"

AppImage white screen / EGL errors (Fedora 44, Ubuntu 24.04+, 26.04)

Two separate WebKitGTK rendering issues land the Tauri window as a fully-white frame with no UI. Which one you have depends on your WebKitGTK version (pkg-config --modversion webkit2gtk-4.1 prints it).

Modern WebKitGTK (2.48+ — Ubuntu 24.04 and newer, incl. 26.04): try this first. WebKit's DMA-BUF renderer fails against some GPU drivers; the terminal typically shows:

Could not create default EGL display: EGL_BAD_PARAMETER

Disable the DMA-BUF renderer before launching:

WEBKIT_DISABLE_DMABUF_RENDERER=1 ./VoiceStudio.Studio_*.AppImage

WebKitGTK 2.44 / 2.46 (Fedora 44, Ubuntu 24.04 at release): a compositing-mode regression blanks the surface on first paint. Disable compositing mode instead:

WEBKIT_DISABLE_COMPOSITING_MODE=1 ./VoiceStudio.Studio_*.AppImage

VoiceStudio's AppRun launcher autodetects the broken 2.44/2.46 range and sets this second variable for you (shipped in v0.3+). The manual env-var path remains the documented fallback when running from a checked-out source tree.

Last resort — if neither variable alone helps, force software rendering (slower, but always paints):

WEBKIT_DISABLE_DMABUF_RENDERER=1 LIBGL_ALWAYS_SOFTWARE=1 ./VoiceStudio.Studio_*.AppImage

If no environment variable helps at all (Mesa 26.1+)

On a host with Mesa 26.1 or newer — Arch/CachyOS, and rolling distros generally — none of the variables above make any difference, including WEBKIT_DMABUF_RENDERER_FORCE_SHM, WEBKIT_SKIA_ENABLE_CPU_RENDERING, EGL_PLATFORM=surfaceless and MESA_LOADER_DRIVER_OVERRIDE=swrast. That is expected: the failure is in EGL display creation, which happens before WebKit consults any rendering-path flag, so there is nothing left for a flag to change.

The cause is a version pairing, not a bug in either half. The AppImage bundles a WebKitGTK built on Ubuntu but ships no libEGL of its own, so that bundled WebKit runs against your Mesa. On Mesa ≥ 26.1 it calls eglGetPlatformDisplay() in a way the newer driver rejects. Your distro's own WebKitGTK is fine, because it was compiled against the Mesa you are running — which is why building from source works on the same machine.

From v0.4.1 the AppImage handles this itself: when your system has a WebKitGTK at least as new as the bundled one, the launcher lets your copy take precedence, and the bundled libraries fill in only what your system lacks.

That check reads your WebKit version from pkg-config, which is only installed alongside the development package. If you have the runtime but not the dev package, the launcher can't compare versions and keeps the bundled copy — so tell it explicitly:

OMNIVOICE_PREFER_SYSTEM_WEBKIT=1 ./VoiceStudio.Studio_*.AppImage

(Set it to 0 to force the bundled copy — useful if your distro's WebKitGTK is older than ours and you'd rather keep the newer bundled one.)

If you are on v0.4.0 or older, either update or build from source:

git clone https://github.com/debpalash/VoiceStudio.git
cd VoiceStudio
bun install
bun run desktop-prod

Tracking issues: #62, #961, #1258.

AppImage: "No microphone found" while the raw binary records fine

Recording from the AppImage fails with "No microphone found. Connect or enable a microphone and try again." — but pactl list short sources shows your microphones, gst-launch-1.0 pulsesrc … ! fakesink captures, and running frontend/src-tauri/target/debug/omnivoice-studio directly records without trouble. GST_DEBUG=2 shows the real message:

WARN GST_REGISTRY gst_registry_binary_check_magic:
  Binary registry magic version is different : 1.23.90 != 1.3.0
GStreamer element appsink not found. Please install it.

Same shape as the blank-window problem above, in a different library. The AppImage bundles the GStreamer core (WebKitGTK links it) but not its plugins — those are loaded dynamically at runtime, so the packaging step cannot see them to copy. The bundled core then reads your plugin directory, whose plugins were built against your core, the version check rejects them, and the scan produces nothing. appsink is one of the elements that goes missing, and it is the one WebKit needs to hand over a capture stream — so getUserMedia() reports no device. Your raw binary works because it uses your core with your plugins, which agree.

From v0.4.3 the launcher prefers your system's GStreamer, which is the only core that can match the plugins that will actually load. It does that by preloading that one library (LD_PRELOAD) rather than by putting your system library directory ahead of the bundle — your GStreamer shares that directory with most of the system, so hoisting it would quietly replace every other bundled library too. If your distro's GStreamer is itself broken and you would rather fall back to the bundled core:

OMNIVOICE_PREFER_SYSTEM_GSTREAMER=0 ./VoiceStudio.Studio_*.AppImage

The launcher checks first that your GStreamer can actually load alongside the libraries the AppImage bundles — a system core built against newer GLib than we ship would fail to load and take the whole app down with it, which is worse than a missing microphone. If that check fails it prints a warning, keeps the bundled core, and the app still starts (with capture still broken); building from source avoids the mismatch entirely.

The AppImage also keeps its plugin-scan cache to itself, at ~/.cache/VoiceStudio/gstreamer-registry.bin, rather than in the shared ~/.cache/gstreamer-1.0/. GStreamer names that shared file by architecture alone, so two cores of different versions overwrite each other's — which both makes this failure depend on whichever application ran last, and lets the AppImage corrupt the cache every other GStreamer app on your machine reads.

If you set XDG_CACHE_HOME, the path follows it ($XDG_CACHE_HOME/VoiceStudio/gstreamer-registry.bin); ~/.cache is the default when it is unset.

Tracking issue: #1333.

.deb ffprobe conflict

Pre-v0.3 .deb packages installed ffprobe into /usr/bin/ffprobe and clobbered the system copy on some distros. v0.3+ relocates the bundled binary into /usr/lib/omnivoice-studio/bin/ffprobe and the postrm script runs dpkg --search to undo the old conflict on upgrade. If you upgraded from a pre-v0.3 .deb and ffprobe -version now reports the wrong binary, re-install the system package:

sudo apt install --reinstall ffmpeg

Restricted networks (China / Russia)

If uv times out fetching the python-build-standalone tarball or PyPI:

# Use a faster Python source mirror (China only — verify a current mirror)
export UV_PYTHON_INSTALL_MIRROR=https://ghproxy.com/https://github.com/astral-sh/python-build-standalone/releases/download

# Use a PyPI mirror
export UV_DEFAULT_INDEX=https://pypi.tuna.tsinghua.edu.cn/simple

# Or skip the download entirely if you have a compatible system Python
export UV_PYTHON_PREFERENCE=only-system

# Be tolerant of slow links
export UV_HTTP_TIMEOUT=120
export UV_HTTP_RETRIES=5

The Phase 3 install milestone (INST-07..11) ships an OS-level mirror cascade that picks these defaults automatically; for v0.3 set them by hand.

AMD GPU (ROCm)

ROCm support is Linux-only and opt-in. The default install ships the CUDA build of PyTorch (the pytorch-cuda index in pyproject.toml), so on an AMD-only machine torch.cuda.is_available() is False and VoiceStudio runs on CPU until you opt into the ROCm variant.

Running in Docker or Podman instead? There's a prebuilt ROCm image — ghcr.io/debpalash/omnivoice-studio:rocm — with GPU acceleration out of the box; see docker.md. The rest of this section is about source/desktop installs. (On Windows there is no ROCm path at all — PyTorch publishes no Windows ROCm wheels; see windows.md.)

Three ways to opt in, in order of preference:

1. First-run setup screen (recommended). On Linux the setup screen's Compute card offers "AMD GPU (ROCm, Linux)" next to the default Auto. When VoiceStudio detects an AMD GPU and the ROCm userspace (/opt/rocm present, or rocminfo on PATH), the ROCm option is pre-selected; with an AMD GPU but no ROCm runtime it stays offered-but-unselected — install ROCm first (or continue on CPU). Choosing ROCm makes the bootstrap reinstall torch/torchaudio from the ROCm wheel index (https://download.pytorch.org/whl/rocm6.4 by default) right after the dependency sync — matched to the app's pinned torch==2.8.0 (the rocm6.2 index only ever published up to torch 2.5.1, so it silently failed the reinstall and left the CPU-only CUDA build in place).

2. Environment variable (existing installs / headless). Set OMNIVOICE_TORCH_VARIANT=rocm before launching — the next bootstrap performs the same ROCm reinstall. OMNIVOICE_TORCH_INDEX=<url> overrides the wheel index when you need a different ROCm version — e.g. AMD publishes newer driver-matched builds (7.2.x) at repo.radeon.com as a --find-links page rather than a PyPI-style index:

uv pip install --reinstall torch==2.8.0 torchaudio==2.8.0 \
  --find-links https://repo.radeon.com/rocm/manylinux/rocm-rel-7.2.4/

run that manually if you want a specific ROCm point release; the OMNIVOICE_TORCH_INDEX env var only accepts a PEP 503 index URL, not a find-links page. If the reinstall fails (network, unsupported card), VoiceStudio keeps the default torch build and warns instead of breaking the install.

3. Manual wheel swap (fallback). Replace torch with the ROCm wheel after the first-run install populates the venv:

# From the project directory (source install), into VoiceStudio's uv venv.
# Matches the app's torch==2.8.0 pin — a different ROCm point release
# (e.g. rocm6.2, rocm7.x) may not carry that exact torch build.
uv pip install --reinstall torch torchaudio \
  --index-url https://download.pytorch.org/whl/rocm6.4

Once a ROCm build of PyTorch is in the venv, detection is automatic — get_best_device() returns the GPU (ROCm-built PyTorch reports through torch.cuda.is_available()), and VoiceStudio auto-sets HSA_OVERRIDE_GFX_VERSION for consumer cards whose GFX ID isn't in the official ROCm support matrix. Relaunch and the Settings → System panel should report the GPU device instead of cpu. Verify the wheel sees your card:

uv run python -c "import torch; print(torch.cuda.is_available(), torch.cuda.get_device_name(0))"

Notes:

  • ROCm is exercised far less than the default CUDA/MPS/CPU paths — it works, but expect rough edges on consumer cards and report what you hit.
  • Unsupported GFX (e.g. some consumer RDNA cards): if it still won't run, set HSA_OVERRIDE_GFX_VERSION yourself (e.g. export HSA_OVERRIDE_GFX_VERSION=11.0.0) to the nearest supported architecture before launching.
  • ZLUDA (CUDA-on-ROCm translation) can work but is unsupported here — prefer a native ROCm wheel.

Tracking issue: #124.

See docs/setup/huggingface-token.md.

Troubleshooting

Hit a wall? See docs/install/troubleshooting.md.