Advertisement
sufehmi

ffmpeg FASTEST WAY TO CUT A VIDEO

Aug 4th, 2021
770
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.25 KB | None | 0 0
  1. # ffmpeg FASTEST WAY TO CUT A VIDEO
  2. # this will result in output.mp4 which contains the contents of input.mp4
  3. # from minute 36 seconds 21 , with length of 10 seconds
  4.  
  5. ffmpeg -i input.mp4 -ss 00:36:21 -t 00:00:10 -acodec copy -vcodec copy output.mp4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement