Re: [FFmpeg-user] dpx 16bit files to ffv1 problem with the frammd5 sum

2020-10-20 Thread Kieran O Leary
I agree with Jerome, I’ve also found this and it’s a pix_fmt issue. This is
a good example of why you should post the complete uncut terminal output as
that would have told us the pix_fmt when you run both jobs.

Best,

Kieran O’Leary
National Library of Ireland
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-user] dpx 16bit files to ffv1 problem with the frammd5 sum

2020-10-20 Thread Jerome Martinez

On 20/10/2020 12:51, boecki wrote:

Hello,
I have some problems to encode a file from a dpx 16bit sequence to ffv1 and
create a proper framemd5 checksum.
The problem is like this, that the checksum from the file is different to
the checksum of the dpx frames.


framemd5 depends on FFmpeg selected pix_fmt for the output, and DPX 
16-bit default pix_fmt is rgb48 (rgb48le or rgb48be depending on the DPX 
endianess) vs FFV1 16-bit default pix_fmt is gbrp16le.
You need to force your framemd5 analysis to a common pix_fmt, add " 
-pix_fmt gbrp16le" for the DPX framemd5 or " -pix_fmt rgb48le" (or " 
-pix_fmt rgb48be" depending on the source DPX endianess) for the FFV1 
framemd5, and you'll find the same results (I tested on a DPX 16-bit BE 
converted to FFV1 and I get the same framemd5 whatever the pix_fmt 
selected for the final comparison, i.e. in both cases you lose no frame 
content).

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".