Hi! Is there a way to convert the .yuv10 files used in EBU's test sequences (http://tech.ebu.ch/Jahia/site/tech/cache/offonce/hdtv/hdtv_test-sequences) with Imagemagick? The following works with .yuv8 files (at least it appears to, I haven't verified colours):
convert -size 1920x1080 uyvy:test.yuv8 test8.bmp However, the following does not work with .yuv10 files: convert -depth 10 -size 1920x1080 uyvy:test.yuv10 test10.bmp In fact, the -depth parameter doesn't seem to make a difference for either file -- I get the exact same output file bit by bit no matter what depth I specify. Is this a bug, or am I specifying the depth in the wrong way? If I do get this working, the goal is to create 10-bit .dpx files. Do I need extra options to make sure Imagemagick doesn't convert the data to RGB as it does with .bmp, or will it pass the bits unchanged by default? (IIRC .dpx can contain both RGB and YUV/YCbCr among other things.) I'm using ImageMagick-6.5.9-10-Q16-windows-x64-static. Best regards, Torgeir _______________________________________________ Magick-users mailing list [email protected] http://studio.imagemagick.org/mailman/listinfo/magick-users
