From 26bb50ebfac18437e755a4f93be36f3c21a9a3c2 Mon Sep 17 00:00:00 2001 From: Simon <60593422+mightbesimon@users.noreply.github.com> Date: Sun, 25 Jun 2023 03:14:22 +1200 Subject: [PATCH] fix a typo in README.md I believe this is a typo and is meant to be `.output('out.mp4')` instead of `.input('out.mp4')` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b8ee9221..8658ac0b 100644 --- a/README.md +++ b/README.md @@ -205,7 +205,7 @@ Expressions to be interpreted by ffmpeg can be included as string parameters and ffmpeg .input('in.mp4') .filter('crop', 'in_w-2*10', 'in_h-2*20') - .input('out.mp4') + .output('out.mp4') ) ```