Remove invalid argument from example

Fixes `Missing argument for option 'i'` error
This commit is contained in:
Maxim Mazurok 2020-08-12 20:02:44 +10:00 committed by GitHub
parent 5a06768caf
commit ba9dfda429
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ This splits `big_video_file.mp4` into chunks, and the size of chunk is 10 second
## Spliting video into equal chunks with some extra options
`python ffmpeg-split.py -f -i input.mp4 -s 600 -v libx264 -e '-vf "scale=320:240" -threads 8'`
`python ffmpeg-split.py -f input.mp4 -s 600 -v libx264 -e '-vf "scale=320:240" -threads 8'`
This splits `input.mp4` into chunks, and the size of chunk is 600 seconds. With extra option to scale output to `320:240` and use 8 threads to speed up.