Page 1 of 1

Extracting title information via CLI (solved)

Posted: Sat Jun 08, 2024 10:32 am
by Ezatoka
Hey everyone,

is there a way to get the track names, which are available on some BluRays, via CLI either with MakeMkvCon or maybe some other program?

Example:
Image
(https://i.imgur.com/mC9Iv69.png if the picure isn't shown)

Any title after the file size is meant.

Re: Extracting title information via CLI

Posted: Sat Jun 08, 2024 1:31 pm
by segfaulted
You can dump it with

Code: Select all

makemkvcon info -r [source]
where [source] is one of the accepted source specifiers, and -r is robot mode which dumps additional info beyond the basic list of titles and tracks.

Here's what some output would look like. Title names can be picked up from either lines prefixed with TINFO:xx:49 or TINFO:xx:30 where xx is the title index.

Image

Re: Extracting title information via CLI (solved)

Posted: Sat Jun 08, 2024 1:36 pm
by Ezatoka
Thank you very much, that's exactly what I was needing.