mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
Update doc
This commit is contained in:
parent
350f30dcba
commit
f131a9a3f9
27
README.md
27
README.md
@ -1,9 +1,32 @@
|
||||
# ffmpeg-python: Powerfully simple A/V routing with Python
|
||||
|
||||
FFmpeg is extremely powerful, but its command-line interface gets really complicated really quickly - especially when working with signal graphs and doing anything more than trivial.
|
||||
## Overview
|
||||
|
||||
There are tons of Python FFmpeg wrappers out there but they seem to lack complex filter support - useless for anything but trivial examples. `ffmpeg-python` works well for simple as well as complicated signal graphs.
|
||||
|
||||
## Quickstart
|
||||
|
||||
```
|
||||
import ffmpeg
|
||||
ffmpeg \
|
||||
.file_input('input.mp4') \
|
||||
.file_output('output.mp4') \
|
||||
.run()
|
||||
```
|
||||
|
||||
Or if you dislike fluent-style APIs:
|
||||
```
|
||||
import ffmpeg
|
||||
in = ffmpeg.file_input('input.mp4')
|
||||
out = ffmpeg.file_output(in)
|
||||
ffmpeg.run(out)
|
||||
```
|
||||
|
||||
## Complex filter graphs
|
||||
FFmpeg is extremely powerful, but it's command-line interface gets really complicated really quickly - especially when working with signal graphs and doing anything more than trivial.
|
||||
|
||||
Take for example a signal graph that looks like this:
|
||||

|
||||
<img src="https://raw.githubusercontent.com/kkroening/ffmpeg-python/master/doc/graph1.png" alt="Signal graph" width="50%" />
|
||||
|
||||
The corresponding command-line arguments are pretty gnarly:
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user