Converting 10 bit DPX to yuv10 (10bit)

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
Josef Zitko
Posts: 2
Joined: 2014-11-18T01:57:18-07:00
Authentication code: 6789

Converting 10 bit DPX to yuv10 (10bit)

Post by Josef Zitko »

Hello,
I need convert my DPX (4K 10bit) files to 10bit 4:2:0 yuv format via ImageMagick in Windows. Is this process supported by ImageMagick? If it si ok, can you write to me a syntaxe? I tried this:

convert -depth 10 -size 3840x2160 uyvy:4K_0013417.dpx out.yuv10
(From 32402kB DPX ImageMagick creating 16200kB yuv10 file. I think, that is bad.)

If it is not supported via ImageMagick, can you give me advice for software to this process? Next requirement: can you write syntax for cycle process (for example 0000.dpx to 0011.dpx).

Thank you very much, Josef Zitko.
Josef Zitko
Posts: 2
Joined: 2014-11-18T01:57:18-07:00
Authentication code: 6789

Re: Converting 10 bit DPX to yuv10 (10bit)

Post by Josef Zitko »

convert -depth 10 -sampling-factor 4:2:0 -size 3840x2160 yuyv:4K_0013417.dpx out.yuv10 (output 32408kB yuv; input 32402kB dpx)

What about this? Can anyone write to me how I can use more input pictures and convert it to one yuv file?

names of the input pictures:
4K_0013417.dpx
4K_0013418.dpx
4K_0013419.dpx
4K_0013420.dpx
4K_0013421.dpx

name of the output file:
out.yuv

Thank you
Post Reply