Metadata-Version: 2.4
Name: ffprobe-binaries-only
Version: 0.1.1
Summary: Bundled ffprobe/ffmpeg binary for Python
Author-email: Philip Spencer <discordbotmusi@protonmail.com>
License: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# ffprobe-binaries

This package bundles a static `ffprobe` and `ffmpeg` binary and provides a function to get its path from Python. 
This is inteded for use in frameworks with low overhead. 
It can also be used as a workaround for environments without access to "sudo apt get".

# Disclaimer
I did not create or maintain the ffmpeg or ffprove binaries. All credit goes here: https://ffmpeg.org/

## Usage

```python
from ffprobe_binaries import get_ffprobe_path
from ffprobe_binaries import get_ffmpeg_path
from pydub import AudioSegment

AudioSegment.converter = get_ffmpeg_path() #Works with other packages as well
AudioSegment.ffprobe = get_ffprobe_path() #Works with other packages as well


