Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matteoh2o1999/ffmpeg-binaries
Static builds of ffmpeg for Python
https://github.com/matteoh2o1999/ffmpeg-binaries
Last synced: about 1 month ago
JSON representation
Static builds of ffmpeg for Python
- Host: GitHub
- URL: https://github.com/matteoh2o1999/ffmpeg-binaries
- Owner: MatteoH2O1999
- License: mit
- Created: 2023-10-19T09:07:31.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-08-05T00:36:59.000Z (3 months ago)
- Last Synced: 2024-08-05T10:57:30.527Z (3 months ago)
- Language: Python
- Size: 42 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ffmpeg for Python
[![CI/CD](https://github.com/MatteoH2O1999/ffmpeg-binaries/actions/workflows/ci.yml/badge.svg)](https://github.com/MatteoH2O1999/ffmpeg-binaries/actions/workflows/ci.yml)
[![codecov](https://codecov.io/github/MatteoH2O1999/ffmpeg-binaries/graph/badge.svg?token=9jkgMvjxxs)](https://codecov.io/github/MatteoH2O1999/ffmpeg-binaries)
![GitHub](https://img.shields.io/github/license/MatteoH2O1999/ffmpeg-binaries)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![PyPI Version](https://badge.fury.io/py/ffmpeg-binaries.svg)](https://pypi.org/project/ffmpeg-binaries/)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/ffmpeg-binaries)
[![Downloads](https://pepy.tech/badge/ffmpeg-binaries)](https://pepy.tech/project/ffmpeg-binaries)Static builds of ffmpeg for Python
## Installation
From pip:
```commandline
pip install ffmpeg-binaries
```## Basic usage
```python
import ffmpeg# Initialize module (only if no binaries found)
ffmpeg.init()# Call ffmpeg directly
ffmpeg.run_as_ffmpeg("-h")# Use the binaries path in other modules
other_module.add_ffmpeg(ffmpeg.FFMPEG_PATH)# Add directly to path
ffmpeg.add_to_path()
```