Splitting a Video Into Parts: Difference between revisions

From Open Source Ecology
Jump to navigation Jump to search
(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...")
(No difference)

Revision as of 07:31, 9 May 2021

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]