ffmpegX extract frames from video

最后都变了- 提交于 2020-01-05 09:25:13

问题


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:


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



来源:https://stackoverflow.com/questions/4983327/ffmpegx-extract-frames-from-video

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!