Shakerato

How to make video clips of the long video using ffmpeg 본문

Research

How to make video clips of the long video using ffmpeg

Shakeratto 2018. 3. 27. 16:56

1. https://www.ffmpeg.org/download.html

2. Click Windows icon

3. Click 'Windows Builds' text

4. Download version 3.4.2, 64bit or 32bit, Static

5. Extract zip file, copy /bin/ffmpeg.exe to video folder

6. Making video clips using this command


ffmpeg -i [Input file name] -ss [start time] -to [end time] [output file name]


(example)

ffmpeg -i video.mp4 -ss 00:00:03.000 -to 00:00:12.000 clip1.mp4

Comments