本文介绍了ffmpegX从视频中提取帧的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我发现这个教程:
它告诉我如何从命令行中的ffmpegX从视频中提取帧(至少这是我的理解)。
Where it tells me how to extract frames from a video with ffmpegX from the commandline (at least that is what I understood).
我在目录中cd我想在Mac OS终端(!)中提取并运行.MOV文件:
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
和
ffmpegX -i mymov.MOV -r 25 -f image2 images%05d.png
但是我都得到:
-bash:ffmpegX:命令未找到
-bash: ffmpegX: command not found
所有这一切都在Mac上。
All this on a Mac.
任何想法我做错了会很棒。
Any ideas what I am doing wrong would be great.
非常感谢。
推荐答案
你应该安装ffmpeg:
You should install ffmpeg : http://ffmpeg.org/download.html
这篇关于ffmpegX从视频中提取帧的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!