Re: [Magick-bugs] Error : using imagemagick pipe with yuv file

[email protected] Fri, 13 Feb 2009 05:31:13 -0800
Newsgroups gmane.comp.video.image-magick.user,gmane.comp.video.image-magick.bugs
Message-ID <[email protected]>
> ./convert.exe -size 176x144 test.yuv  -rotate  2  '-'  | ./convert.exe '-' -resize 50%  output.yuv

Try this instead:

  convert -size 176x144 -depth 8 test.yuv -rotate 2 \
    -crop 176x144+0+0 -resize 50% output.yuv