Metadata-Version: 2.1
Name: ffmpeg-py
Version: 0.1.0
Summary: Simple Python wrapper for FFmpeg
Download-URL: http://pypi.python.org/pypi/ffmpeg-py
Author: Gautam Dhingra
Author-email: gautamdhingra8404@gmail.com
License: MIT
Project-URL: Source, https://github.com/gautam8404/ffmpeg-py
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown
License-File: LICENSE

Simple FFmpeg binding for python

example:
```python
from ffmpeg import FFmpeg
import subprocess
    ffmpeg = FFmpeg()
    ff = (
        ffmpeg
        .OverwriteOutput()
        .addInput("video1.webm")
        .addInput("./logo.png")
        .addInput("video2.webm")
        .videoCodec("libx264")
        .audioCodec("aac")
        .videoFramerate(30)
        .videoResolution(resString="1920x1080")
        .scale2refFilter(2, 0, "oh*mdar:ih*0.2", "camera", "video")  # resize camera to 20% of screen height
        .overlayFilter("video", "1", "W-w-10", "H-h-10", "v")  # overlay logo on bottom right
        .overlayFilter("v", "camera", "10", "10")  # overlay camera on top left
        .output("output.mp4")  # output file
    )
    code, stdout, stderr = ff.execute(stderr=subprocess.STDOUT, shell=False)
    print(code, stdout, stderr)
```
