Skip to main content

A powerful, local-first library and CLI for video transcription and subtitle generation using Whisper.

Project description

Auto-Subs Logo

Auto-Subs

Effortless Subtitle Generation from Whisper Transcriptions.

A powerful, local-first library and CLI for generating subtitles with precise, word-level accuracy.

PyPI Version CI Status Code Coverage
Code style: ruff Types: Mypy License: MIT


Auto-Subs bridges the gap between raw transcription data and perfectly formatted subtitles. Whether you're a developer integrating transcription into your application or a content creator needing quick subtitles, auto-subs provides a robust, simple, and reliable solution.

Key Features

  • 🎯 Intelligent Word Segmentation: Automatically splits word-level transcriptions into perfectly timed subtitle lines based on character limits and natural punctuation breaks.
  • ⚙️ Simple & Powerful API: Use it as a library with a clean, dictionary-based input that requires no complex objects, or as a feature-rich command-line tool.
  • 🛡️ Robust Validation: Automatically handles common data issues, like inverted timestamps (start > end), ensuring your process never breaks on imperfect data.
  • 📄 Multiple Formats: Generate subtitles in the most popular formats: SRT, ASS, and plain TXT.
  • ✅ High Quality & Tested: Strictly typed with Mypy, linted with Ruff, and rigorously tested to ensure reliability.

Installation

pip install auto-subs

Quickstart

As a Command-Line Tool (CLI)

The fastest way to generate a subtitle file from a Whisper-compatible JSON.

# Generate an SRT file with default settings
auto-subs generate path/to/transcription.json

# Generate a styled ASS file with a custom character limit
auto-subs generate input.json -f ass -o styled.ass --max-chars 42

CLI Options:

  • --output, -o: Specify the output file path. (Defaults to the input filename with a new extension)
  • --format, -f: Choose the output format (srt, ass, txt). (Defaults to srt)
  • --max-chars: Set the maximum characters per subtitle line. (Defaults to 35)

As a Python Library

Integrate auto-subs directly into your application for full control.

import json
from auto_subs import generate

# 1. Load your Whisper-compatible transcription data (as a dict)
with open("path/to/transcription.json", "r", encoding="utf-8") as f:
    transcription_data = json.load(f)

try:
    # 2. Generate SRT content with a 40-character limit per line
    srt_content = generate(transcription_data, "srt", max_chars=40)

    # 3. Save the content to a file
    with open("output.srt", "w", encoding="utf-8") as f:
        f.write(srt_content)

    print("Successfully generated subtitles!")

except ValueError as e:
    # Handle validation errors for malformed input data
    print(f"Error: {e}")

API Design: Simplicity First

The public API of auto-subs is designed to be as simple as possible. All functions, like auto_subs.generate(), accept a standard Python dictionary (dict).

This approach was chosen intentionally to:

  • Reduce Friction: You can directly use the JSON output from Whisper after loading it into a dictionary, without needing to import and instantiate our internal Pydantic models.
  • Decouple Your Code: Your project doesn't need to depend on our internal data structures, making your code more resilient to future updates.

While the input is a simple dictionary, auto-subs performs robust internal validation to ensure the data is well-formed, giving you the best of both worlds: a simple API and the safety of strong data validation.

Contributing

Contributions are welcome! If you find a bug or have a feature request, please open an issue. If you'd like to contribute code, please open a pull request.

License

This project is licensed under the MIT License. See the LICENSE file for details.

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

auto_subs-0.3.2.tar.gz (64.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

auto_subs-0.3.2-py3-none-any.whl (19.8 kB view details)

Uploaded Python 3

File details

Details for the file auto_subs-0.3.2.tar.gz.

File metadata

  • Download URL: auto_subs-0.3.2.tar.gz
  • Upload date:
  • Size: 64.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for auto_subs-0.3.2.tar.gz
Algorithm Hash digest
SHA256 2344bd7a418d544ff5eab29c0aee5908e77355b03e89562ea5eb14aab7535b7a
MD5 e60bb1b7f3933c373fd1c751050a052d
BLAKE2b-256 0cd03646044fcf5412cadf1f221986e16557a42091145a2b041c67365b32b840

See more details on using hashes here.

File details

Details for the file auto_subs-0.3.2-py3-none-any.whl.

File metadata

  • Download URL: auto_subs-0.3.2-py3-none-any.whl
  • Upload date:
  • Size: 19.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for auto_subs-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 5052fb77e80542e50c386eee21e3d624153580ce5f8ea5432805c225537cf42d
MD5 660d247f1730df0ceee6c23ac3ed37e3
BLAKE2b-256 676f9dc83724224e40c98a971948e437356d3a7ccfe891d07a70261e8e6ce247

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page