mirror of
https://github.com/c0decracker/video-splitter.git
synced 2026-01-23 02:24:16 +00:00
Added short overview of the script and example of how to run it
This commit is contained in:
parent
6c912cec8c
commit
0f9bab380b
1 changed files with 14 additions and 2 deletions
16
README.md
16
README.md
|
|
@ -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/
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue