From ae4b6a964d15681df81ec2ba9b57ce46379fbfe9 Mon Sep 17 00:00:00 2001 From: Karl Kroening Date: Wed, 4 Jul 2018 00:12:18 -0700 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a4235e5..5b3f5fc 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,7 @@ Alternatively, standard python help is available, such as at the python REPL pro ## Custom Filters -Don't see the filter you're looking for? `ffmpeg-python` includes , but it's easy to use any arbitrary ffmpeg filter: +Don't see the filter you're looking for? `ffmpeg-python` includes shorthand notation for some of the most commonly used filters (such as `concat`), but it's easy to use any arbitrary ffmpeg filter: ```python stream = ffmpeg.input('dummy.mp4') stream = ffmpeg.filter_(stream, 'fps', fps=25, round='up')