How to Trim Videos: Difference between revisions

From Open Source Ecology
Jump to navigation Jump to search
(Created page with "ffmpeg -ss 00:00:00 -i input.mp4 -to 00:00:00 -c:v copy -c:a copy trimmed_copy.mp4 Replace 00:00:00 with start and end time respectively. See details of this at [https://ott...")
 
No edit summary
Line 1: Line 1:
ffmpeg -ss 00:00:00 -i input.mp4 -to 00:00:00 -c:v copy -c:a copy trimmed_copy.mp4
ffmpeg -ss 01:17:04 -i input.mkv -to 01:34:16 -c:v copy -c:a copy trimmed_copy.mkv


Replace 00:00:00 with start and end time respectively.
Replace 00:00:00 with start and end time respectively.


See details of this at [https://ottverse.com/trim-cut-video-using-start-endtime-reencoding-ffmpeg/]
See details of this at [https://ottverse.com/trim-cut-video-using-start-endtime-reencoding-ffmpeg/]

Revision as of 16:41, 8 July 2021

ffmpeg -ss 01:17:04 -i input.mkv -to 01:34:16 -c:v copy -c:a copy trimmed_copy.mkv

Replace 00:00:00 with start and end time respectively.

See details of this at [1]