Use ffmpeg to remove the first n seconds of a video

ffmpeg -ss 10 -i input.mp4 -c copy output.mp4
  • -ss 10 skip the first 10 seconds of input.mp4
  • -i input.mp4 input video path
  • -c copy just copy the video and audio track, don’t do codec convert


Leave a Reply

Your email address will not be published. Required fields are marked *