when you identify a video file imagmagick delegates to ffmpeg.
The current delegates.xml entry reads:
Code: Select all
<delegate decode="mpeg:decode" command=""ffmpeg" -v -1 -vframes %S -i "%i" -vcodec pam -an -f rawvideo -y "%u.pam" 2> "%Z""/>
Code: Select all
identify video.mp4[0]
Hence, the correct delegates.xml entry should read something like this:
Code: Select all
<delegate decode="mpeg:decode" command=""ffmpeg" -v -1 -i "%i" -vframes %S -vcodec pam -an -f rawvideo -y "%u.pam" 2> "%Z""/>
For reference, here the according ffmpeg bug:
https://ffmpeg.org/trac/ffmpeg/ticket/898
Happy video identifying