Browse by type
<img src="https://github.com/Dadangdut33/Speech-Translate/blob/master/speech_translate/assets/icon.png?raw=true" width="250px" alt="Speech Translate Logo">
<a href="https://github.com/Dadangdut33/Speech-Translate/issues"><img alt="GitHub issues" src="https://img.shields.io/github/issues/Dadangdut33/Speech-Translate"></a>
<a href="https://github.com/Dadangdut33/Speech-Translate/pulls"><img alt="GitHub pull requests" src="https://img.shields.io/github/issues-pr/Dadangdut33/Speech-Translate"></a>
<a href="https://github.com/Dadangdut33/Speech-Translate/releases/latest"><img alt="github downloads" src="https://img.shields.io/github/downloads/Dadangdut33/Speech-Translate/total?label=downloads (github)"></a>
<a href="https://github.com/Dadangdut33/Speech-Translate/releases/latest"><img alt="GitHub release (latest SemVer)" src="https://img.shields.io/github/v/release/Dadangdut33/Speech-Translate"></a>
<a href="https://github.com/Dadangdut33/Speech-Translate/commits/master"><img alt="GitHub commits since latest release (by date)" src="https://img.shields.io/github/commits-since/Dadangdut33/Speech-Translate/latest"></a>
<a href="https://github.com/Dadangdut33/Speech-Translate/compare/master...dev"><img alt="GitHub commits difference between master and dev branch" src="https://img.shields.io/github/commits-difference/dadangdut33/speech-translate?base=master&head=dev&label=commits%20difference%20with%20%40dev%20branch"></a>
<a href="https://github.com/Dadangdut33/Speech-Translate/stargazers"><img alt="GitHub Repo stars" src="https://img.shields.io/github/stars/Dadangdut33/Speech-Translate?style=social"></a>
<a href="https://github.com/Dadangdut33/Speech-Translate/network/members"><img alt="GitHub forks" src="https://img.shields.io/github/forks/Dadangdut33/Speech-Translate?style=social"></a>
Speech Translate is a practical application that combines OpenAI's Whisper ASR model with free translation APIs. It serves as a versatile tool for both real-time / live speech-to-text and speech translation, allowing the user to seamlessly convert spoken language into written text. Additionally, it has the option to import and transcribe audio / video files effortlessly.
Speech Translate aims to expand whisper ability by combining it with some translation APIs while also providing a simple and easy to use interface to create a more practical application. This application is also open source, so you can contribute to this project if you want to.

Preview - Usage
<img src="https://github.com/Dadangdut33/Speech-Translate/raw/1.3.10/preview/7.png" width="700" alt="Record">
<img src="https://github.com/Dadangdut33/Speech-Translate/raw/1.3.10/preview/8.png" width="700" alt="File import">
<img src="https://github.com/Dadangdut33/Speech-Translate/raw/1.3.10/preview/9.png" width="700" alt="File import in progress">
<img src="https://github.com/Dadangdut33/Speech-Translate/raw/1.3.10/preview/10.png" width="700" alt="Align result">
<img src="https://github.com/Dadangdut33/Speech-Translate/raw/1.3.10/preview/11.png" width="700" alt="Refine result">
<img src="https://github.com/Dadangdut33/Speech-Translate/raw/1.3.10/preview/12.png" width="700" alt="Translate Result">
<img src="https://github.com/Dadangdut33/Speech-Translate/raw/1.3.10/preview/13.png" width="700" alt="Transcribe mode on subtitle window (English)">
Transcribe mode on detached window (English)
<img src="https://github.com/Dadangdut33/Speech-Translate/raw/1.3.10/preview/14.png" width="700" alt="Translate mode on subtitle window (English to Indonesia)">
Translate mode on detached window (English to Indonesia)
Preview - Setting
<img src="https://github.com/Dadangdut33/Speech-Translate/raw/1.3.10/preview/2.png" width="700" alt="Setting - General">
<img src="https://github.com/Dadangdut33/Speech-Translate/raw/1.3.10/preview/3.png" width="700" alt="Setting - Record">
<img src="https://github.com/Dadangdut33/Speech-Translate/raw/1.3.10/preview/4.png" width="700" alt="Setting - Whisper">
<img src="https://github.com/Dadangdut33/Speech-Translate/raw/1.3.10/preview/4-5.png" width="700" alt="Setting - File Export">
<img src="https://github.com/Dadangdut33/Speech-Translate/raw/1.3.10/preview/5.png" width="700" alt="Setting - Translate">
<img src="https://github.com/Dadangdut33/Speech-Translate/raw/1.3.10/preview/6.png" width="700" alt="Setting - Textbox">
| OS | Installation from Prebuilt binary | Installation as a Module | Installation from Git |
|---|---|---|---|
| Windows | ✔️ | ✔️ | ✔️ |
| MacOS | ❌ | ✔️ | ✔️ |
| Linux | ❌ | ✔️ | ✔️ |
* Python 3.8 or later (3.11 is recommended) for installation as module.
Segoe UI font installed on your system for best UI experience (For OS other than windows, you can see this: Ubuntu - MacOS)| Size | Parameters | Required VRAM | Relative speed |
|---|---|---|---|
| tiny | 39 M | ~1 GB | ~32x |
| base | 74 M | ~1 GB | ~16x |
| small | 244 M | ~2 GB | ~6x |
| medium | 769 M | ~5 GB | ~2x |
| large | 1550 M | ~10 GB | 1x |
* This information is also available in the app (hover over the model selection in the app and there will be a tooltip about the model info). Also note that when using faster-whisper, the model speed will be significantly faster and have smaller vram usage, for more information about this please visit faster-whisper repository
[!IMPORTANT]
Please take a look at the Requirements first before installing. For more information about the usage of the app, please check the wiki
[!NOTE]
The prebuilt binary is shipped with CUDA 11.8, so it will only work with GPU that has CUDA 11.8 compatibility. If your GPU is not compatible, you can try installation as module or from git below.
[!NOTE]
Use python 3.11 for best compatibility and performance[!WARNING]
You might need to have Build tools for Visual Studio (or the equivalent of it on your OS) installed
To install as module, we can use pip, with the following command.
pip install -U git+https://github.com/Dadangdut33/Speech-Translate.git --extra-index-url https://download.pytorch.org/whl/cu118
cu118 here means CUDA 11.8, you can change it to other version if you need to. You can check older version of pytorch here or here.
pip install -U git+https://github.com/Dadangdut33/Speech-Translate.git
You can then run the program by typing speech-translate in your terminal/console. Alternatively, when installing as a module, you can also clone the repo and install it locally by running pip install -e . in the project directory. (Don't forget to add --extra-index-url if you want to install with GPU support)
Notes For Installation as Module:
--upgrade --force-reinstall at the end of the command, if the update does not need new dependencies you can add --no-deps at the end of the command to speed up the installation process.@branch_name or @commit_hash at the end of the url. Example: pip install -U git+https://github.com/Dadangdut33/Speech-Translate.git@dev --extra-index-url https://download.pytorch.org/whl/cu118If you prefer cloning the app directly from git/github, you can follow the guide in development (wiki) or below. Doing it this way might also provide a more stable environment.
Check out the wiki for more information about the app, user settings, how to use it, and more.
[!NOTE]
Check the wiki for more details
[!NOTE]
It is recommended to create a virtual environment, but it is not required. I also use python 3.11.6 for development, but it should work with python 3.8 or later[!WARNING]
You might need to have Build tools for Visual Studio installed
git clone --recurse-submodules https://github.com/Dadangdut33/Speech-Translate.gitcd into the project directorypython -m venv venvpip install -r requirements.txt --extra-index-url https://download.pytorch.org/whl/cu118 if you are using GPU or pip install -r requirements.txt if you are using CPU.python Run.py in root directory to run the app.Notes:
--recure-submodules flag when cloning the repository and the submodules is not cloned correctly, you can do git submodule update --init --recursive in the project directory to pull the needed submodules.--extra-index-url is needed to install CUDA version of pytorch and for this one we are using CUDA 11.8. If your device is not compatible or you need to use other version of CUDA you can check the previous pytorch version in this link or this.You can run the app by running the Run.py located in root directory. Alternatively you can also run it using python -m speech_translate in the root directory.
Before compiling the project, make sure you have installed all the dependencies and setup your pytorch correctly. Your pytorch version will control wether the app will use GPU or CPU (that's why it's recommended to make virtual environment for the project).
The pre compiled version in this project is built using cx_freeze, we have provided the script in build.py. This build script is only configured for windows build at the moment, but feel free to contribute if you know how to build properly for other OS.
To compile it into an exe run python build.py build_exe in the root directory. This will produce a folder containing the compiled project alongside an executable in the build directory. After that, use innosetup script to create an installer. You can use th
$ claude mcp add Speech-Translate \
-- python -m otcore.mcp_server <graph>