Complexity Score
Low
Open Issues
N/A
Dependent Projects
6
Weekly Downloadsglobal
3,751
License
- Apache-2.0
- Yesattribution
- Permissivelinking
- Permissivedistribution
- Permissivemodification
- Yespatent grant
- Yesprivate use
- Permissivesublicensing
- Notrademark grant
Downloads
Readme
pyffmpeg |
FFmpeg wrapper for python. It uses the most up-to-date FFmpeg binary to provide both FFmpeg and FFprobe functionality. So you can kill two birds with one stone.
The beautiful thing about this is that it comes with it’s own FFmpeg executable. It is compressed, making it the smallest one you can find. Becuase it’s cross-platform and python 3, it is the only option available for building cross-platform apps with ffmpeg in python.
FFmpeg Version
Uses current FFmpeg version
Installation
pip install pyffmpeg
Usage
FFmpeg
from pyffmpeg import FFmpeg
inp = 'path/to/music_folder/f.mp4'
out = 'path/to/music_folder/f.mp3'
ff = FFmpeg()
output_file = ff.convert(inp, out)
print(output_file)
FFprobe
Provides FFprobe functions and values
from pyffmpeg import FFprobe
input_file = 'path/to/music.mp3'
fp = FFprobe(input_file)
print(fp.duration)
will print
> 00:04:32:32
NB: The above digits are just for illustration purposes.
Wiki
The wiki can be located here
Contributing
Please read Contributing
Legal
This library uses prebuilt binaries of FFmpeg licensed under the LGPLv2.1 and can be downloaded via the following links:
- Mac - here
- Linux - here
- Windows - here
Dependencies
No runtime dependency information found for this package.
CVE IssuesActive
0
Scorecards Score
4.00
Test Coverage
No Data
Follows Semver
No
Github Stars
64
Dependenciestotal
0
DependenciesOutdated
0
DependenciesDeprecated
0
Threat Modelling
No Data
Repo Audits
No Data
Learn how to distribute pyffmpeg in your own private PyPI registry
$pip install pyffmpeg
/Processing...
✓Done
60 Releases
PyPI on Cloudsmith