I am using "convert" command to convert JPG/PNG files to YCbCr 444 using the below command:
I have noticed that DPX descriptor is 102, which confirms 444 mode.convert index.jpg -colorspace YCbCr index_ycbcr.dpx
Then I tried to generate YCbCr 422 DPX file with the below command:
But I have noticed that DPX descriptor is 102 (expected value was 100).convert index.jpg -colorspace YCbCr -sampling-factor 4:2:2 index_ycbcr.dpx
Can someone please help me out?
I have following queries:
1. I need to know if DPX YCbCr 422 file can be generated? If yes, please let me know the command. If no, How to change descriptor value (-set dpx:descriptor 100 did not work for me)
2. Will the below command generate YCBCr output file? (I have added -type TrueColor)
convert index.jpg -colorspace YCbCr -type TrueColor index_ycbcr.dpx
Thanks,
Prashant