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')`
This commit is contained in:
Simon 2023-06-25 03:14:22 +12:00 committed by GitHub
parent df129c7ba3
commit 26bb50ebfa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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')
)
```