mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
Update readme
This commit is contained in:
parent
7bffe9672e
commit
aa602a372f
18
README.md
18
README.md
@ -12,6 +12,15 @@ There are tons of Python FFmpeg wrappers out there but they seem to lack complex
|
||||
Flip a video horizontally:
|
||||
```
|
||||
import ffmpeg
|
||||
node = ffmpeg.input('input.mp4')
|
||||
node = ffmpeg.hflip(node)
|
||||
node = ffmpeg.output(node)
|
||||
ffmpeg.run(node)
|
||||
```
|
||||
|
||||
Or if you prefer a fluent interface:
|
||||
```
|
||||
import ffmpeg
|
||||
ffmpeg \
|
||||
.input('input.mp4') \
|
||||
.hflip() \
|
||||
@ -19,15 +28,6 @@ ffmpeg \
|
||||
.run()
|
||||
```
|
||||
|
||||
Or if you prefer a non-fluent interface:
|
||||
```
|
||||
import ffmpeg
|
||||
node = ffmpeg.input('input.mp4')
|
||||
node = ffmpeg.hflip(node)
|
||||
node = ffmpeg.output(node)
|
||||
ffmpeg.run(node)
|
||||
```
|
||||
|
||||
## Complex filter graphs
|
||||
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.
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user