MediaArea / RAWcooked

Encodes RAW audio-visual data into the Matroska container (MKV), using the video codec FFV1 for the image and audio codec FLAC for the sound.
https://mediaarea.net/RAWcooked
BSD 2-Clause "Simplified" License
41 stars 9 forks source link

What data would be (potentially) missing? #402

Closed dlasusa closed 1 year ago

dlasusa commented 1 year ago

If I were to:

  1. Get checksums of DPX files and store them.
  2. Convert DPX files to an MKV using RAWcooked for the encode (no padding, coherency, conformance checks)
  3. Convert MKV back to DPX using RAWcooked for the decode (no checks)
  4. Get checksums of the new DPX files
  5. Compare original checksums vs. new checksums

Assuming the checksums all came back as identical...what might I still be missing by skipping the other checks in RAWcooked?

Thanks!

JeromeMartinez commented 1 year ago

You do checks that RAWcooked does, so at the end it is same :).

dlasusa commented 1 year ago

Gotcha. Thanks!