Cut video file with ffmpeg
Last update
2021-04-15
2021-04-15
« — »
1 2 | # crop video from 00:37:15 to 00:39:45
ffmpeg -i input.mp4 -ss 00:37:15 -to 00:39:45 -c copy output.mp4
|
Source: superuser.com