Update README.md

This commit is contained in:
吴国华 2017-03-05 10:46:12 +08:00 committed by GitHub
parent 9a8113a825
commit 4481bcd4f5

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 euqal 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 -i 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.