How to Trim Videos

From Open Source Ecology
Revision as of 16:38, 8 July 2021 by Marcin (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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 [1]