1
0
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:
Karl Kroening 2017-05-27 23:25:57 -10:00
parent e0958792c3
commit 4b54df2b57

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