LiveTranslate
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、主播和外语视频观看。
File Explorer
Download Latest Version (.zip)- release.yml
- __init__.py
- utils.py
- __init__.py
- ctc.py
- model.py
- CHANGELOG_en.md
- CHANGELOG_zh.md
- en.yaml
- zh.yaml
- en.png
- zh.png
- test_requirements.py
- test_segmentation.py
- test_startup_environment.py
- test_translator_thinking.py
- .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
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- 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.
Pulled directly from this repo's README.
3. Python
Easypython -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).
Pulled directly from this repo's README.
