Extragere video din video mp4

ffmpeg -i input.mp4 -ss 00:01:00 -to 00:02:00 -c copy output.mp4

unde:

-i: specifica fisierul de intrare (input.mp4).
-ss: Folosit cu -i, este momentul de la care se incepe extragerea fisierului.
00:01:00: Momentul de start in format hh:mm:ss
-to: Specifica durata This specifies duration from start (00:01:40) to end (00:02:12).
00:02:00: This is the time your trimmed video will end with.
-c copy: Aceasta este o optiune This is an option to trim via stream copy. (NB: Very fast)

Categorie: