Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # $1 the filename to be chucked
  4. # $2 should contains how frequently the video must be chuncked (00:00:00, hh/mm/ss)
  5. ffmpeg -i $1 -c copy -map 0 -segment_time $2 -reset_timestamps 1 -f segment output%03d.mp4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement