The entire main UI is gated behind `bootstrapStage === 'ready'` (App.jsx) — until the Python backend reports ready, only the BootstrapSplash shows. If the backend hangs in a non-terminal stage and never reaches ready (e.g. a failed from-source backend spawn on Windows: uv/Python not on PATH), useBootstrapStage polled forever, trapping the user on a splash with no Settings / Start / Clone / Extract buttons — which is exactly what #474 reports (verified: no backend-startup regression; every startup-imported router imports cleanly). - useBootstrapStage: add a per-stage stall watchdog. Track when (stage,message) last changed; if a non-terminal stage sits past its budget (installing_deps gets 20 min since it legitimately runs 5–10 min; everything else 120 s), flip to the existing `failed` state — which already surfaces actionable hints, the live log panel, and Retry / Clean-&-Retry. Any change resets the clock, so a live install never trips it. - detectHints + bootstrap.hint_stuck: a targeted hint for the stuck case (run `uv sync`, check uv/Python on PATH, read the log / Settings → Logs). - CONTRIBUTING.md: document `bun run desktop-prod` (the prod desktop command the reporter typo'd as `desktop=prod`), note both desktop scripts auto-run `uv sync` + start the backend, and add a "stuck on the setup splash" pointer. No backend code change. Frontend suite green (503); CJK guard green.
9.5 KiB
Contributing to OmniVoice Studio
Thanks for your interest in improving OmniVoice Studio! This guide covers everything you need to get started.
Quick Links
| 💬 Chat | Discord |
| 🐛 Bugs | GitHub Issues |
| 🏷️ Good First Issues | Filtered list |
| 📋 Roadmap | README → Roadmap |
Development Setup
Prerequisites
- Git
- Bun (frontend package manager)
- uv (Python environment manager)
- ffmpeg (audio/video processing)
- Python 3.10+ (managed automatically by
uv)
Clone & Run
git clone https://github.com/debpalash/OmniVoice-Studio.git
cd OmniVoice-Studio
bun install
bun run dev
This starts both services:
| Service | URL | What it does |
|---|---|---|
| Backend | localhost:3900 |
FastAPI server — TTS, ASR, diarization, dubbing pipeline |
| Frontend | localhost:3901 |
React + Vite UI |
Desktop App (Tauri)
bun run desktop # dev: hot-reload Tauri shell + backend
bun run desktop-prod # production: builds, bundles the backend, then launches
Both run uv sync first (so the Python backend env is set up) and start the
backend automatically — you do not start it separately. Use the exact script
names: there is no desktop=prod (note the hyphen in desktop-prod).
desktop-prod is Windows-aware (auto-detects bash/git; see scripts/desktop-prod.mjs).
Requires Rust and platform-specific Tauri dependencies — see the Tauri prerequisites.
If the app opens but stays on the setup splash with no buttons, the Python
backend didn't finish starting — the splash surfaces the stall reason, a log
panel, and a Retry button (and Settings → Logs → Backend has the full trace).
The most common from-source cause is uv or Python not being on your PATH.
Project Structure
OmniVoice-Studio/
├── backend/ # Python FastAPI server
│ ├── api/ # Route handlers
│ ├── core/ # Config, prefs, constants
│ └── services/ # TTS engines, ASR, dubbing, audio DSP
│ └── tts_backend.py # ← Multi-engine TTS registry
├── frontend/ # React + Vite
│ ├── src/
│ │ ├── components/ # UI components
│ │ ├── hooks/ # Custom React hooks
│ │ ├── stores/ # Zustand state slices
│ │ └── utils/ # Shared utilities
│ └── src-tauri/ # Rust/Tauri desktop shell
├── deploy/ # Docker, CI configs
├── docs/ # Screenshots, MCP config
└── scripts/ # Build & release scripts
How to Contribute
Bug Reports
Open an issue with:
- What happened vs what you expected
- Steps to reproduce
- OS, GPU, and Python version (find in Settings → Logs)
- Error logs (Settings → Logs → copy relevant lines)
Pull Requests
- Fork the repo and create a branch from
main - Keep PRs focused — one feature or fix per PR
- Run tests before pushing:
# Backend tests uv run pytest backend/ -x -q # Frontend build check cd frontend && npx vite build --mode development - Write a clear PR title — it becomes the squash-merge commit message
- Don't include local machine stats, file paths, or private system info in PR descriptions
Adding a New TTS Engine
OmniVoice's TTS backend is a plugin registry. Adding a new engine takes ~50 lines:
- Open
backend/services/tts_backend.py - Create a class extending
TTSBackend:
class MyEngineBackend(TTSBackend):
id = "my-engine"
display_name = "My Engine (description)"
@classmethod
def is_available(cls) -> tuple[bool, str]:
try:
import my_engine # noqa: F401
return True, "ready"
except ImportError:
return False, "my_engine not installed. pip install my-engine"
@property
def sample_rate(self) -> int:
return 24000
@property
def supported_languages(self) -> list[str]:
return ["en", "zh"]
def generate(self, text: str, **kw) -> torch.Tensor:
# ... call your engine, return [1, num_samples] tensor
- Register it in
_REGISTRYat the bottom of the file - That's it — it auto-appears in Settings → TTS Engine
Code Style
Python (Backend)
- Formatter: We don't enforce one globally — match the style of the file you're editing
- Logging: Use
logger.warning()/logger.error(), never bareprint() - Exceptions: Avoid bare
except: pass— catch specific exceptions - Type hints: Use them for public API functions and class methods
JavaScript/React (Frontend)
- Components: Functional components with hooks
- State: Zustand stores in
src/stores/, organized by slice - CSS: Vanilla CSS in component-level files — no Tailwind
- Naming:
PascalCasefor components,camelCasefor hooks and utils
Rust (Tauri)
- Format:
cargo fmtbefore committing - Modules: One concern per file (
bootstrap.rs,tools.rs,config.rs,commands.rs)
Commit Messages
Write clear, concise messages. The PR title becomes the squash-merge commit.
good: fix: prevent CUDA OOM during concurrent transcription + TTS
good: feat: add CosyVoice 3 TTS backend adapter
good: docs: add platform compatibility matrix to README
bad: fixed stuff
bad: update
bad: WIP
Testing
# Run all backend tests
uv run pytest backend/ -x -q
# Run a specific test file
uv run pytest backend/tests/test_api.py -x -q
# Frontend build validation (no test suite yet)
cd frontend && npx vite build --mode development
# Tauri shell check (requires Rust)
cd frontend/src-tauri && cargo check
What code review looks like
Every PR is reviewed by two AI reviewers before a human looks at it:
- CodeRabbit posts a walkthrough (with a sequence diagram, and an ASCII before/after sketch for UI changes), inline findings, and warning-mode pre-merge checks against the project's hard rules.
- Greptile reviews with the same project rubrics and learns from 👍/👎 reactions on its comments — react to train it.
Both are advisory, not gating: CI and the maintainer's approval decide. Don't be surprised by detailed bot comments minutes after you open a PR — address what's right, push back (in a reply) on what's wrong.
Commit & PR conventions: conventional-commit style with a scope
(fix(dub): …, feat(setup): …) and link the issue (Closes #N / Refs #N)
in the title or body.
Quality gates your PR must pass
- Cross-platform parity (hard rule): anything that ships in default mode must behave identically on macOS, Windows, and Linux. Platform-specific implementation is fine; platform-divergent default behavior is a P0. Platform-only features go behind an explicit opt-in (Settings toggle, env var, or CLI flag).
- i18n — all 21 locales (hard rule): every user-facing string goes through
t('...')and the key must exist in all 21 files underfrontend/src/i18n/locales/. Translate; don't copy English into non-English locales. CI fails on hardcoded CJK outside the allowlist intests/test_no_hardcoded_cjk.py(extend_ALLOWED_FILESwith a justification for legitimate functional CJK). - DB schema changes go through an alembic migration with a tested upgrade
path — existing
omnivoice_data/must keep working with no manual steps. - Engine back-compat: already-installed engines (model weights on disk) must not require reinstall or re-download.
- Local-first: no new outbound calls except GitHub Issues (opt-in reporting) and HuggingFace model downloads. Never log or persist secrets or absolute home paths.
- Security posture: the backend serves loopback HTTP — treat every query/path/form parameter as hostile. User-chosen filesystem destinations are authorized in the Tauri process (save dialog), never via HTTP params.
Contribution licensing
OmniVoice Studio is AGPL-3.0-only, and the maintainer also offers a commercial license (see LICENSE). By submitting a contribution you agree that:
- you have the right to submit it (your own work, or compatibly licensed);
- it is licensed to the project under AGPL-3.0; and
- you grant the project maintainer a perpetual, worldwide, non-exclusive right to also distribute your contribution under the project's commercial license terms.
This inbound grant is what keeps the dual-license model viable. If you can't
agree to (3) for a particular contribution, say so in the PR and we'll discuss
before merging. Adding a Signed-off-by: line (DCO) to your commits is
appreciated but not required.
Need Help?
- Stuck on setup? Ask in Discord #help
- Not sure where to start? Check good first issues
- Want to discuss a big change? Open a discussion or Discord thread before coding
Thank you for contributing! 🎙️