ffmpeg.exe을 사용하여 영상의 모든 프레임을 이미지로 저장하는 방법입니다.



사용방법


ffmpeg.exe -i video.mp4 -r fps images%10d.jpg


-i : file name of input video (입력 파일명)

-r : frame rate (프레임 레이트, 초당 저장하는 이미지 수)


images%10d.jpg : 저장 파일 명

(파일명이 images0000000001.jpg, images0000000002.jpg, images0000000003.jpg과 같이 저장됨)



+ Recent posts