LiveTranslate

(★ 549)

Real-time audio translation, captures system audio + mic, runs ASR (Whisper/SenseVoice), translates via LLM API with streaming display. Perfect for VTubers, livestreamers, and watching foreign content. Windows 实时音频翻译,ASR 语音识别后 LLM 流式翻译显示,适合 VTuber、主播和外语视频观看。

  • .gitignore
  • asr_anime_whisper.py
  • asr_client.py
  • asr_engine.py
  • asr_funasr.py
  • asr_funasr_nano.py
  • asr_remote.py
  • asr_sensevoice.py
  • asr_server.py
  • asr_worker.py
  • audio_capture.py
  • benchmark.py
  • build_release.ps1
  • CLAUDE.md
  • config.yaml
  • control_panel.py
  • dialogs.py
  • i18n.py
  • install.bat
  • install.ps1
  • LICENSE
  • log_window.py
  • main.py
  • model_manager.py
  • README.md
  • README_zh.md
  • REMOTE_ASR.md
  • requirements.txt
  • start.bat
  • subtitle_overlay.py
  • subtitle_settings.py
  • subtitle_window.py
  • test_audio.py
  • transcript_writer.py
  • translator.py
  • update.bat
  • vad_processor.py

🚀 Installation Guide

1. Get the code
git clone https://github.com/TheDeathDragon/LiveTranslate

Downloads the entire project code from GitHub to your computer.

cd LiveTranslate

Moves into the project folder you just downloaded.

2. Official Install Script

Easy Recommended
Prerequisites
  • Python 3 Python is required to use pip.
pip install torch torchaudio --index-url https://download.pytorch.org/whl/cu126 # CUDA

Installs the package published on PyPI directly — no need to clone the source.

pip install torch torchaudio --index-url https://download.pytorch.org/whl/cu128 # CUDA (RTX 50xx)

Installs the package published on PyPI directly — no need to clone the source.

pip install torch torchaudio --index-url https://download.pytorch.org/whl/cpu # CPU only

Installs the package published on PyPI directly — no need to clone the source.

After installing, open a new terminal and run the program's version command (e.g. --version) to confirm it worked.

Pulled directly from this repo's README.

3. Python

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Python 3 On Windows, be sure to check 'Add Python to PATH' during installation.
python -m venv .venv

Runs the Python script (or module).

pip install torch torchaudio --index-url https://download.pytorch.org/whl/cu126 # CUDA

Installs the package published on PyPI directly — no need to clone the source.

pip install torch torchaudio --index-url https://download.pytorch.org/whl/cu128 # CUDA (RTX 50xx)

Installs the package published on PyPI directly — no need to clone the source.

pip install torch torchaudio --index-url https://download.pytorch.org/whl/cpu # CPU only

Installs the package published on PyPI directly — no need to clone the source.

pip install -r requirements.txt

Installs the Python libraries listed in requirements.txt (or similar).

If it runs without errors and prints output in the terminal, it worked.

Pulled directly from this repo's README.

// repository documentation