Skip to content

Generate subtitle for video using whisper and translate to other language using DeepL

License

Notifications You must be signed in to change notification settings

rufuszhu/WhisperSRT

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WhisperSRT

Setup

Local install

git clone https://github.com/rufuszhu/WhisperSRT.git
cd WhisperSRT
pip install .

Install ffmpeg

# on Ubuntu or Debian
sudo apt update && sudo apt install ffmpeg

# on Arch Linux
sudo pacman -S ffmpeg

# on MacOS using Homebrew (https://brew.sh/)
brew install ffmpeg

# on Windows using Scoop (https://scoop.sh/)
scoop install ffmpeg

If you want to use gpu instead of cpu

pip uninstall torch
pip cache purge
pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu117

check if cuda is available

python -c "import torch; print(torch.cuda.is_available())"

Apply for deepL api key

https://www.deepl.com/pro#developer (It's free)

Save your api key in your environment variable as DEEPL_API_KEY

Command-line usage

The following command will generate chinese subtitles for the video file video.mp4 containing korean speech, and save the result to video.srt:

whisperSrt path/to/video.mp4 -t --lang=ko --dest=zh

The same command also works for folder, it will generate subtitles for all video files in the folder, including subfolders:

whisperSrt path/to/folder -t --lang=ko --dest=zh

The following command will translate an existing chinese srt file into an english srt file:

whisperSrt path/to/video.srt -tr --lang=zh --dest=en

Use whisperSrt -h to see all available options.

TODO

  • Use chatGPT to translate
  • Add UI for MacOS

About

Generate subtitle for video using whisper and translate to other language using DeepL

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages