Skip to main content

Modern Python FFmpeg wrappers offer comprehensive support for complex filters, complete with detailed typing and documentation.

Project description

typed-ffmpeg

CI Package Documentation PyPI Version codecov

typed-ffmpeg offers a modern, Pythonic interface to FFmpeg, providing extensive support for complex filters with detailed typing and documentation. Inspired by ffmpeg-python, this package enhances functionality by addressing common limitations, such as lack of IDE integration and comprehensive typing, while also introducing new features like JSON serialization of filter graphs and automatic FFmpeg validation.


Table of Contents


Features

typed-ffmpeg

  • Zero Dependencies: Built purely with the Python standard library, ensuring maximum compatibility and security.
  • User-Friendly: Simplifies the construction of filter graphs with an intuitive Pythonic interface.
  • Comprehensive FFmpeg Filter Support: Out-of-the-box support for most FFmpeg filters, with IDE auto-completion.
  • Integrated Documentation: In-line docstrings provide immediate reference for filter usage, reducing the need to consult external documentation.
  • Robust Typing: Offers static and dynamic type checking, enhancing code reliability and development experience.
  • Filter Graph Serialization: Enables saving and reloading of filter graphs in JSON format for ease of use and repeatability.
  • Graph Visualization: Leverages graphviz for visual representation, aiding in understanding and debugging.
  • Validation and Auto-correction: Assists in identifying and fixing errors within filter graphs.

Planned Features

Please note that the following features are under consideration or development for future releases:

  • Partial Evaluation: Enhance the flexibility of filter graphs by enabling partial evaluation, allowing for modular construction and reuse.
  • Extended FFmpeg Version Support: While typed-ffmpeg is currently built with FFmpeg version 6.0 in mind, we are working to ensure compatibility across different FFmpeg versions. Feedback and issue reports are welcome to improve version support.
  • Additional Filter Support: We aim to expand the range of FFmpeg filters supported by typed-ffmpeg. Continuous updates will be made to include more complex and varied filters.
  • Input and Output Options Support: Provide a more comprehensive interface for input and output options, including support for additional codecs and formats.

Installation

To install typed-ffmpeg, simply use pip:

pip install typed-ffmpeg

Note: FFmpeg must be installed on your system.

Visualization Support

To enable graph visualization features:

pip install 'typed-ffmpeg[graph]'

Note: This requires Graphviz to be installed on your system.


Quick Usage

Here's how to quickly start using typed-ffmpeg:

import ffmpeg

# Flip video horizontally and output
f = (
    ffmpeg
    .input(filename='input.mp4')
    .hflip()
    .output(filename='output.mp4')
)
f.run()

For a more complex example:

import ffmpeg

# Complex filter graph example
in_file = ffmpeg.input("input.mp4")
overlay_file = ffmpeg.input("overlay.png")

f = (
    ffmpeg
    .concat(
        in_file.trim(start_frame=10, end_frame=20),
        in_file.trim(start_frame=30, end_frame=40),
    )
    .overlay(overlay_file.hflip())
    .drawbox(x="50", y="50", width="120", height="120", color="red", thickness="5")
    .output(filename="out.mp4")
)
f.run()

See the Usage section in our documentation for more examples and detailed guides.


Acknowledgements

This project was initially inspired by the capabilities of GPT-3, with the original concept focusing on using GPT-3 to generate an FFmpeg filter SDK directly from the FFmpeg documentation. However, during the development process, I encountered limitations with GPT-3's ability to fully automate this task.

As a result, I shifted to traditional code generation methods to complete the SDK, ensuring a more robust and reliable tool. Despite this change in approach, both GitHub Copilot and GPT-3 were instrumental in accelerating the development process, providing valuable insights and saving significant time.

I would also like to extend my gratitude to the ffmpeg-python project, which inspired this project significantly. The API style and design ideas from ffmpeg-python have been influential, and I have utilized these aspects to shape the development of our SDK.

This project is dedicated to my son, Austin, on his seventh birthday (February 24, 2024), whose curiosity and zest for life continually inspire me.


Feel free to check the Documentation for detailed information and more advanced features.

Project details


Release history Release notifications | RSS feed

This version

1.0.3

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

typed_ffmpeg-1.0.3.tar.gz (128.3 kB view details)

Uploaded Source

Built Distribution

typed_ffmpeg-1.0.3-py3-none-any.whl (138.2 kB view details)

Uploaded Python 3

File details

Details for the file typed_ffmpeg-1.0.3.tar.gz.

File metadata

  • Download URL: typed_ffmpeg-1.0.3.tar.gz
  • Upload date:
  • Size: 128.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.18

File hashes

Hashes for typed_ffmpeg-1.0.3.tar.gz
Algorithm Hash digest
SHA256 41432609fa1e4f3da780e25e3e469108e32964da787d1df5b4db5dcbc5ffea6c
MD5 84c79e7d00b155aecc9f0b1f72fc6ced
BLAKE2b-256 1e16db5824235f696986ec81189450e4f89c57aa5ac1912280b117a28b4c9f49

See more details on using hashes here.

File details

Details for the file typed_ffmpeg-1.0.3-py3-none-any.whl.

File metadata

  • Download URL: typed_ffmpeg-1.0.3-py3-none-any.whl
  • Upload date:
  • Size: 138.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.18

File hashes

Hashes for typed_ffmpeg-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 66badcb1f1bf2b9effef66de9ccf2ee20173c715dfb8b312cb99d178b7387820
MD5 ff1e80bef10767a295dfae67eac85efe
BLAKE2b-256 e3f7781ab6ce860de65ee8bdaa4d652d31c3a64c6c1ff98a818b523cd55c1faa

See more details on using hashes here.

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