ffmpegX extract frames from video

2019-08-02 20:33发布

I found this tutorial:

http://stream0.org/2008/02/howto-extract-images-from-a-vi.html

Where it tells me how to extract frames from a video with ffmpegX from the commandline (at least that is what I understood).

I cd in the directory where the .MOV files is I want to extract and ran in the Mac OS Terminal(!):

ffmpeg -i mymov.MOV -r 25 -f image2 images%05d.png

and

ffmpegX -i mymov.MOV -r 25 -f image2 images%05d.png

But on both I get:

-bash: ffmpegX: command not found

All this on a Mac.

Any ideas what I am doing wrong would be great.

Thanks a lot.

1条回答
欢心
2楼-- · 2019-08-02 21:36

You should install ffmpeg : http://ffmpeg.org/download.html

查看更多
登录 后发表回答