Update readme

This commit is contained in:
Karl Kroening 2017-05-27 23:25:57 -10:00
parent e0958792c3
commit 4b54df2b57

View File

@ -14,7 +14,7 @@ Flip a video horizontally:
import ffmpeg
stream = ffmpeg.input('input.mp4')
stream = ffmpeg.hflip(stream)
stream = ffmpeg.output(stream)
stream = ffmpeg.output(stream, 'output.mp4')
ffmpeg.run(v)
```