diff --git a/README.md b/README.md index 2c5b4e8..4013dbf 100644 --- a/README.md +++ b/README.md @@ -118,6 +118,10 @@ file 'file 4.mkv' ``` `ffmpeg -f concat -safe 0 -i files.txt -c copy output.mkv` +## Split Video into 300 Second Chunks + +`ffmpeg -i fff.avi -acodec copy -f segment -segment_time 300 -vcodec copy -reset_timestamps 1 -map 0 fff%d.avi` + ## Rotate Videos `ffmpeg -i in.mov -vf "transpose=1" out.mov` ```