Added short overview of the script and example of how to run it

This commit is contained in:
Alexander Natskovich 2015-09-07 17:12:50 -07:00
parent 6c912cec8c
commit 0f9bab380b

View file

@ -1,2 +1,14 @@
video-splitter
==============
# Command Line Video Splitter
Simple command line Python script that splits video into multi chunks. Under the hood script uses [FFMpeg] so you will need to have that installed. No transcoding or modification of video happens, it just get's split properly.
Run `python ffmpeg-split.py -h` to see the options. Here are few samples of how it could be used:
`python ffmpeg-split.py -f big_video_file.mp4 -s 10`
This splits `big_video_file.mp4` into 10 chunks. Each chunk will be suffixed with numeric index, for example `big_video_file-0.mp4`, `big_video_file-1.mp4`, etc.
[FFMpeg]: https://www.ffmpeg.org/