Page 1 of 1

Is there a way to find out the disc year date - ripped with MKV?

Posted: Thu Jan 01, 2026 4:03 pm
by ancient
Hey all

I have a number of Blu-Ray ripped discs. Often there are newer better quality remastered discs released which I am interested in. The problem is that I get confused whether I already ripped the remastered version!
Is there a way I can find out the disc year date from a ripped MKV?

Any help appreciated.

Re: Is there a way to find out the disc year date - ripped with MKV?

Posted: Thu Jan 01, 2026 5:37 pm
by flojo
No. The best you can do is look at "writing_application" in the header editor and guess based on the release version of whatever program it is, but that doesn't really mean anything since you can use use very old versions of mkvmkerge's, handbrake's, etc.

Going forward you could tag the mkv, but I don't think MakeMKV supports tagging and sadly it doesn't support running pre/post scripts, but you could do it yourself. You can create a .xml file then tag the .mkv with mkvpropedit.

Here's an example:

Code: Select all

<Tags><!-- HTML comment - a hidden note to myself about this file -->
  <Tag>
    <Targets>
      <TargetTypeValue>30</TargetTypeValue>
    </Targets>
    <Simple>   <!-- the tag name can be any name you want, not just COMMENT, but COMMENT is _VERY_ common -->
      <Name>COMMENT</Name>
      <String>Today's Date, 2026-01-01</String>
    </Simple>
  </Tag>
</Tags>
Then you would tag your mkv file with:

Code: Select all

mkvpropedit --tags global:tags.xml "my_movie_name.mkv"

Re: Is there a way to find out the disc year date - ripped with MKV?

Posted: Thu Jan 01, 2026 5:50 pm
by ancient
Thank you.