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:
(https://i.imgur.com/mC9Iv69.png if the picure isn't shown)
Any title after the file size is meant.
Extracting title information via CLI (solved)
Extracting title information via CLI (solved)
Last edited by Ezatoka on Sat Jun 08, 2024 1:36 pm, edited 1 time in total.
-
- Posts: 92
- Joined: Mon May 06, 2024 11:10 am
Re: Extracting title information via CLI
You can dump it with
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.
Code: Select all
makemkvcon info -r [source]
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.
Re: Extracting title information via CLI (solved)
Thank you very much, that's exactly what I was needing.