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

Everything related to MakeMKV
Post Reply
ancient
Posts: 64
Joined: Sat Aug 07, 2021 12:31 am

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

Post 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.
flojo
Posts: 315
Joined: Thu Jun 22, 2023 4:27 am
Location: El Paso

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

Post 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"
ancient
Posts: 64
Joined: Sat Aug 07, 2021 12:31 am

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

Post by ancient »

Thank you.
Post Reply