digit
digit

Reputation: 1523

ffmpegX extract frames from video

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.

Upvotes: 1

Views: 3387

Answers (1)

Ali Ismayilov
Ali Ismayilov

Reputation: 1755

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

Upvotes: 4

Related Questions