Video Processing

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
metsfan666

Video Processing

Post by metsfan666 »

I am trying to break apart videos and get some of the frames that make up an image. I tried the example

Code: Select all

convert -quiet -delay 1 plane.avi plane.gif
I replaced plane.avi with a different video I had. I got no output so I removed -quiet and got this error "convert: Not enough pixel data" A different avi gave this error "convert: AVI chunk indx not yet supported"

What do these errors mean? Does this only work on certain avis?

Is there any way to parse a flash video file, .flv?

Thanks
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: Video Processing

Post by anthony »

AVI is a very complex video format that contains a huge number of different codecs. IM can not handle all these codecs.

It is suggested you install and use a specialized video handling tool like mencode (with the full codec collection) to separate out the desired frames.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply