Advertisement
fangfufu

ffmpeg cut

Sep 4th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.34 KB | None | 0 0
  1. #!/bin/bash
  2. ffmpeg -i input.mp4 -ss 00:00 -to 00:39 -c copy 1.mp4
  3. ffmpeg -i input.mp4 -ss 06:26 -to 07:27 -c copy 2.mp4
  4. ffmpeg -i input.mp4 -ss 17:39 -to 35:02 -c copy 3.mp4
  5. ffmpeg -i input.mp4 -ss 43:38 -to 43:49 -c copy 4.mp4
  6. ffmpeg -i input.mp4 -ss 01:03:20 -to 01:03:57 -c copy 5.mp4
  7. ffmpeg -i input.mp4 -ss 01:32:08 -to 01:48:13 -c copy 6.mp4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement