From 4b54df2b57ef947d3173159009efa5cdc9860033 Mon Sep 17 00:00:00 2001 From: Karl Kroening Date: Sat, 27 May 2017 23:25:57 -1000 Subject: [PATCH] Update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 84a0f56..fbf17da 100644 --- a/README.md +++ b/README.md @@ -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) ```