Local desktop app for YouTube video dubbing, AI voice-over, speech-to-text, translation, and final video export.
YouTube Dubbing Studio is a Windows-first PySide6 application that downloads a YouTube video, transcribes speech, translates segments, generates a new voice track with selectable TTS engines, aligns the dub to timing, and renders the final dubbed video back out.
It is built for people who want a local AI dubbing workflow with a real GUI instead of a pile of scripts.
Most "YouTube translator" tools only solve one fragment of the workflow:
- download the video
- generate subtitles
- translate text
- call one online TTS API
This project is built as a full desktop dubbing pipeline:
- download and prepare source media
- transcribe speech locally
- translate into the selected target language
- synthesize a new voice track
- align speech back to the original timing
- mix background audio
- export the final dubbed video
- Desktop GUI built with
PySide6 - Local speech-to-text with Whisper / Faster-Whisper
- Local translation pipeline with NLLB
- Multiple TTS engines:
Kokoro TTS,Edge-TTS,F5-TTS - Strict model behavior: the selected dubbing model is used as-is, without silent engine switching
- Automatic component bootstrap for Python, FFmpeg, PyTorch, and model dependencies
- GPU-aware startup and CUDA-friendly runtime setup
- Built-in logs, diagnostics, and pipeline stage visibility
- YouTube Shorts support
- Portable Windows workflow
- Download the source video from YouTube
- Extract and prepare audio
- Run speech recognition
- Translate recognized segments
- Generate dubbed speech with the selected TTS engine
- Align generated speech to source timing
- Mix dub with original audio if needed
- Export final video
| Engine | Best for | Notes |
|---|---|---|
Kokoro TTS |
Fast local English dubbing | Good iteration speed for local workflows |
Edge-TTS |
Broad language coverage | Useful when you need clear voices and multilingual support |
F5-TTS |
Reference-audio-driven dubbing | Better fit for heavier voice-cloning style workflows |
- creators who want to dub YouTube videos into another language
- developers building a local AI dubbing pipeline
- researchers experimenting with speech translation and voice generation
- users who want more control than typical web dubbing tools provide
- people searching for a YouTube dubbing app, AI dubbing software, offline video translation tool, or local voice-over generator
Main project art:
This repo is ready for adding live UI screenshots later in assets/screenshots/ or docs/.
app/ Main application code
assets/ Icons and splash assets
locales/ UI localization files
scripts/ Helper scripts
system/ Portable runtime bootstrap and launcher files
tests/ Unit and smoke tests
Start.vbs Windows-first launcher
README.md Project overview
Important folders inside app/:
app/gui/- main window, dialogs, settings panel, menusapp/pipeline/- staged dubbing pipelineapp/tts_engines/- TTS engine abstractions and implementationsapp/translator/- translation layerapp/runtime_assets.py- startup preparation and dependency bootstrap
This project is currently optimized for Windows.
Run:
Start.vbsOn first launch it will automatically:
- download portable Python
- install pip
- install PyTorch
- install Python dependencies
- prepare FFmpeg and runtime components
system\install.cmdThen start the app with:
system\run.cmdThe app prepares missing components at startup and stores runtime data outside Git-tracked source code.
Examples of runtime-managed items:
- downloaded models
- generated voice presets
- logs
- jobs
- caches
- portable Python environment
That is why the repository intentionally excludes:
data/system/python/- caches
- temporary files
- local config files
Run tests with the Python environment you use for development:
python -m unittest discover testsLocalization data lives in:
Extraction helper:
python scripts\extract_locales.pyThe project already contains:
- application GUI
- startup bootstrap flow
- multilingual target language support
- multiple dubbing engines
- runtime preparation dialog
- logging and diagnostics
- tests for major pipeline areas
This is an actively evolving codebase, so some parts are more polished than others, but the foundation is already substantial.
Useful search phrases this project is relevant to:
- YouTube dubbing studio
- YouTube dubbing app
- YouTube video translator desktop app
- AI dubbing software
- local dubbing software
- offline video translation app
- Python YouTube dubbing project
- PySide6 desktop dubbing tool
- AI voice-over for YouTube videos
- local speech translation pipeline
- better GitHub-ready screenshots and demo GIFs
- packaged releases
- cleaner first-run onboarding
- stronger model health diagnostics
- explicit repair / reset runtime actions in the UI
- more localization coverage
- improved CI and test cleanup
No license file is included yet.
If you plan to make this repository public-facing and reusable, adding a license should be one of the next steps.
Viacheslav Chernyshov
GitHub: ViacheslavChernyshov
