Skip to main content

Add Automatic Captions to YouTube Shorts with AI

Project description

readmepic

Check out these examples with captions added using Captametropolis (by CurioBurstz):

CurioBurstz No. 1 CurioBurstz No. 2

Captametropolis

GitHub issues GitHub pull requests

Stargazers repo roster for @AppSolves/captametropolis Forkers repo roster for @AppSolves/captametropolis

Captametropolis brings next-level automated captions to your YouTube Shorts and other videos using Whisper and MoviePy.

IntroductionFeaturesInstallationUsageCustomizationLicense


👋 Welcome to Captametropolis, a tool designed to make your videos even more engaging with stunning automatic captions! The process is seamless, fast, and adds flair to your content.

Captametropolis ✨

Introduction 📖

Forked from unconv/captacity

Just like captacity, but BIGGER!

Captametropolis takes video captioning to a new level! Whether you're making YouTube Shorts, TikToks, or any other type of video content, Captametropolis helps you effortlessly add beautiful, dynamic captions with precision using Whisper for speech recognition and MoviePy for video editing.

Features 🚀

  • Automatic Captions: Powered by Whisper, Captametropolis transcribes your video and adds captions with ease.
  • Custom Fonts & Styles: Customize your captions with unique fonts, colors, sizes, shadows, and more.
  • Highlight Words: Focus attention on important parts by highlighting specific words in real-time.
  • Local & API Whisper Support: Use OpenAI's Whisper locally or via API for transcription.
  • Programmatic Integration: Easily integrate Captametropolis into your Python projects.

Installation 🛠️

Prerequisites 📦

Make sure to install the following:

  1. FFmpeg: Download the latest version from here and ensure it’s added to your PATH.
  2. ImageMagick: Download from here, making sure to select:
    • Install legacy utilities (e.g. convert)
    • Add application directory to your system PATH.

Install Captametropolis ⚙️

To install the latest version of Captametropolis, run the following command:

pip install captametropolis -U

Once installed, you can add captions to a video by running:

captametropolis <video_file> <output_file>

Font Registration 🎨

To use custom fonts in your captions, register them with ImageMagick. Run the following in admin mode:

captametropolis register_font "path/to/your/font.ttf" -qr

Alternatively, register fonts programmatically in Python:

from captametropolis.utils import register_font

register_font("path/to/your/font.ttf", quiet_run=True)  # Will also ask for admin rights

Programmatic Use 💻

Easily add captions to your videos programmatically using Captametropolis:

import captametropolis

captametropolis.add_captions(
    video_file="my_short.mp4",
    output_file="my_short_with_captions.mp4",
    font_path="path/to/your/font.ttf",  # Use your custom font here
)

Customization 🎨

Customize your captions with full control over fonts, colors, effects, and more! Check out the customizable parameters:

captametropolis.add_captions(
    video_file="my_short.mp4",
    output_file="my_short_with_captions.mp4",

    font_path = "/path/to/your/font.ttf",
    font_size = 130,
    font_color = "yellow",

    stroke_width = 3,
    stroke_color = "black",

    shadow_strength = 1.0,
    shadow_blur = 0.1,

    highlight_current_word = True,
    highlight_color = "red",

    line_count=1,
    rel_width = 0.8,  # Relative width of the text box
)

Using Whisper Locally vs API 🧠

By default, Captametropolis uses OpenAI’s Whisper locally if the openai-whisper package is installed. If you want to use the OpenAI Whisper API instead, you can force this behavior:

captametropolis.add_captions(
    video_file="my_short.mp4",
    output_file="my_short_with_captions.mp4",
    use_local_whisper=False,  # Use the OpenAI Whisper API
)

To install Whisper locally, run:

pip install captametropolis[local] -U

Conclusion 🎉

Captametropolis makes adding captions to your videos as simple as it is powerful! Enhance your videos and reach a wider audience with engaging captions. 🚀

License 📜

This project is licensed under the MIT License. See the LICENSE file for more 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

captametropolis-1.0.8.tar.gz (369.4 kB view hashes)

Uploaded Source

Built Distribution

captametropolis-1.0.8-py3-none-any.whl (158.6 kB view hashes)

Uploaded Python 3

Supported by

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