Splitting a Video Into Parts

From Open Source Ecology
Revision as of 07:31, 9 May 2021 by Marcin (talk | contribs) (Created page with "ffmpeg -i 1.mpeg -t 1800 -acodec copy -vcodec copy 30minvideo.mpeg See https://www.ffmpeg.org/ffmpeg.html =Links= *Stack exchange shows the timing parameters - [https://unix...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

ffmpeg -i 1.mpeg -t 1800 -acodec copy -vcodec copy 30minvideo.mpeg

See https://www.ffmpeg.org/ffmpeg.html

Links

  • Stack exchange shows the timing parameters - [1]]. -ss is start second, -t is seconds of duration.
  • To do lossless cutting: Lossless only does muxing and demuxing - not transcoding. [2]