Dub any YouTube video into Hindi (and 19 other languages) with a casual, engaging neural voice.
Project description
🎙️ youtube-dubber
Dub any YouTube video into Hindi (and 19 other languages) with a casual, engaging neural voice — like a desi YouTuber, not a robotic narrator.
Give it a URL → it pulls the captions, translates them to natural casual speech, generates a neural voice, and saves synced dubbed audio clips + a manifest. Fully headless — use it in scripts, servers, or pipelines.
⚡ Quick start
pip install youtube-dubber
export GROQ_API_KEY=gsk_xxxxxxxx # free key → https://console.groq.com/keys
from youtube_dubber import dub
manifest = dub(
"https://www.youtube.com/watch?v=VIDEO_ID",
lang="hindi", # any of 20 languages
gender="female", # "male" or "female"
out="./out",
)
print(len(manifest["segments"]), "segments dubbed")
Or from the command line:
youtube-dubber --url https://youtu.be/VIDEO_ID --lang hindi --gender female --out ./out
Output: out/audio/<videoId>_<lang>_<gender>/seg_NNNNN.mp3 clips + out/manifest.json.
⚠️ System Requirements
pip install brings the Python code, but you must also have these on your system (they are not pip-installable Python packages):
| Requirement | Why | Install |
|---|---|---|
| 🐍 Python 3.10+ | runtime | — |
| 🎬 ffmpeg | audio conversion / time-stretch | sudo apt install ffmpeg · brew install ffmpeg · windows |
| ⬇️ yt-dlp | fetches captions & stream info | pip install -U yt-dlp |
| 🔑 Groq API key | translation + Whisper STT (free tier) | console.groq.com/keys |
| 🌐 Internet | edge-tts calls Microsoft's neural voices | — |
💡 Install yt-dlp alongside the package:
pip install "youtube-dubber[ytdlp]"ffmpeg must be on your PATH — it is a system binary, not a pip package.
🌍 Supported languages (20)
Indian (casual Hinglish / code-switch style — tech terms stay English): Hindi · Tamil · Telugu · Bengali · Marathi · Gujarati · Kannada · Malayalam · Punjabi · Urdu
International (full translation): Spanish · French · German · Japanese · Chinese · Korean · Arabic · Portuguese · Russian · Italian
Each has a male & female neural voice. Source language is auto-detected — dub an Arabic, Chinese, or English video into Hindi, all the same way.
🧠 Live progress (callback API)
from youtube_dubber import Dubber
def on_event(ev):
if ev["type"] == "progress":
print(f"[{ev['step']}] {ev['pct']}% {ev['msg']}")
elif ev["type"] == "segment":
print("dubbed:", ev["dubbed"])
Dubber(lang="hindi", gender="male", out_dir="./out", on_event=on_event).run(url)
Event types: stream_url · progress · segment · done · error
✨ Why it's different
- Casual, not robotic — prompt-tuned to sound like a real creator ("तो भाई, scene ये है…"), not a textbook
- Auto language detection — works on any source language out of the box
- Disk cache — re-running the same video is instant (no re-translation/TTS)
- Rate-limit resilient — automatic retries so segments never silently vanish
- Fit-to-window timing — clips are speed-matched (≤1.4×) so dubbing stays in sync without sounding sped-up
🖥️ Want the desktop app instead?
This package is the headless engine. There's also a full Electron desktop app (paste a URL, watch the dubbed video live with subtitles) and a real-time Live Dub mode — see the GitHub repo:
👉 github.com/Ashut90/youtube-dubber
📄 License
GPL-3.0 — © 2026 Ashutosh (@Ashut90). Forks must stay open source and credit the original. See LICENSE.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file youtube_dubber-0.1.1.tar.gz.
File metadata
- Download URL: youtube_dubber-0.1.1.tar.gz
- Upload date:
- Size: 23.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d939355383267f7eba528886c255df39c25e7671b55b76e817788e276f58eeba
|
|
| MD5 |
286f2349d77cf78c5b57ddfb873997c1
|
|
| BLAKE2b-256 |
2dfe2d2c49444520f6d1677063532393663bd2f034bfdae322d2d43bf855afb6
|
File details
Details for the file youtube_dubber-0.1.1-py3-none-any.whl.
File metadata
- Download URL: youtube_dubber-0.1.1-py3-none-any.whl
- Upload date:
- Size: 17.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1301cf5ce1378b3ef049f531e3a9772fd26a9e34fd46858ead9d9ce6464d5928
|
|
| MD5 |
462e5afe9f262dbb3cf2c3292ab2ab64
|
|
| BLAKE2b-256 |
50fdc86100ec1fae68e54fcc531fcbe2b8f7942cb3e77f2c6e9d22c32fc71981
|