GithubHelp home page GithubHelp logo

sirozha1337 / faster-auto-subtitle Goto Github PK

View Code? Open in Web Editor NEW
5.0 0.0 2.0 34 KB

Automatically generate, translate and overlay subtitles for any video.

License: MIT License

Python 100.00%
marian-nmt subtitles subtitles-generator subtitles-translator whisper-ai accessibility

faster-auto-subtitle's Introduction

Automatic subtitles in your videos

This is a fork of auto_subtitle using faster-whisper implementation.

This repository uses ffmpeg and OpenAI's Whisper to automatically generate and overlay subtitles on any video.

It also uses Opus-MT to translate subtitles to another language.

While both transcription and translation are offline processes they require downloading pre-trained models that require some time to load on the first run.

Installation

To get started, you'll need Python 3.9 or newer. Install the binary by running the following command:

pip install wheel

pip install git+https://github.com/Sirozha1337/faster-auto-subtitle.git

You'll also need to install ffmpeg, which is available from most package managers:

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

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

# on Windows using Chocolatey (https://chocolatey.org/)
choco install ffmpeg

Usage

The following command will generate a subtitled/video.mp4 file contained the input video with overlayed subtitles.

faster_auto_subtitle /path/to/video.mp4 -o subtitled/

The default setting (which selects the small model) works well for transcribing English. You can optionally use a bigger model for better results (especially with other languages). The available models are tiny, tiny.en, base, base.en, small, small.en, medium, medium.en, large, large-v1, large-v2, large-v3.

faster_auto_subtitle /path/to/video.mp4 --model medium

Adding --task translate will translate the subtitles into English:

faster_auto_subtitle /path/to/video.mp4 --task translate

Adding --target_language {2-letter-language-code} will translate the subtitles into specified language using Opus-MT:

faster_auto_subtitle /path/to/video.mp4 --target_language fr

This will require downloading the appropriate model. If direct translation is not available it will attempt translation from source to english and from english to source.

Run the following to view all available options:

faster_auto_subtitle --help

Tips

The tool also exposes a couple of model parameters, that you can tweak to increase accuracy.

Higher beam_size usually leads to greater accuracy, but slows down the process.

Setting higher no_speech_threshold could be useful for videos with a lot of background noise to stop Whisper from " hallucinating" subtitles for it.

In my experience settings option condition_on_previous_text to False dramatically increases accuracy for videos like TV Shows with an intro song at the start.

You can use sample_interval parameter to generate subtitles for a portion of the video to play around with those parameters:

faster_auto_subtitle /path/to/video.mp4 --model medium --sample_interval 00:05:30-00:07:00 --condition_on_previous_text False --beam_size 6 --no_speech_threshold 0.7

License

This script is open-source and licensed under the MIT License. For more details, check the LICENSE file.

faster-auto-subtitle's People

Contributors

alistair1231 avatar chiprodoy avatar m1guelpf avatar perseron avatar sirozha1337 avatar sudhamjayanthi avatar

Stargazers

 avatar  avatar  avatar

Forkers

trananh1992

faster-auto-subtitle's Issues

ERROR: Failed building wheel for fasttext

image

The commands I ran:

gh repo clone Sirozha1337/faster-auto-subtitle
cd faster-auto-subtitle/
python3 -m venv venv
source venv/bin/activate
pip install wheel
pip install -e .

Here you can see the complete result of that command:
https://pastebin.com/nqUfJhW1

Tested in Ubuntu 23.10.
Version of the venv: Python 3.11.6

I haven't tested the suggested 3.9 yet. I'm sorry if this ends up being the issue.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.