Log in

View Full Version : Making Disc Title Appear on the TV


Rich86
18th November 2016, 19:35
When I prepare files to make a BD using multiAVCHD, whatever name I enter in "Compilation Name" on the final screen where I select "Blu-Ray Disc" for output ends up in the output somewhere and appears as the disc title when the disc is burned and then in my Sony player before beginning to play the disc. I cannot seem to find where to make that happen using BD-RB. Is there somewhere in the config that I have to do that? I always enter what I want in the labels section of imgburn but it doesn't seem to have anything to do with whatever is referenced for display in a BD player. Not a big deal - mostly curious how it works if anyone knows.

LowDead
18th November 2016, 23:50
The file that contains that info is located on the disc under meta\dl\ and is called bdmt_eng.xml. I don't think of a way to edit this in BD-RB, but it can easily be done manual.

Following is an example of how it could look like.

<?xml version="1.0" encoding="utf-8"?>
<disclib xmlns="urn:BDA:bdmv;disclib" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:BDA:bdmv;disclib disclib.xsd">
<di:discinfo xmlns:di="urn:BDA:bdmv;discinfo">
<di:title>
<di:name>NAME OF MOVIE</di:name>
</di:title>
<di:description>
<di:thumbnail href="./icon_s.jpg" size="416x240" />
<di:thumbnail href="./icon.jpg" size="640x360" />
</di:description>
</di:discinfo>
</disclib>

//LD

Rich86
20th November 2016, 01:09
I don't see where BD-RB creates a bdmt_eng.xml file when making files/folders for a BD. So, based on LowDead's comments, I put this together and tested it:

After creating your output BD structure from BD-RB, copy a bdmt_eng.xml file to the Meta\DL folder with the movie title you want displayed inserted in the correct bolded spot below:

<?xml version="1.0" encoding="utf-8"?>
<disclib xmlns="urn:BDA:bdmv;disclib">
<di:discinfo xmlns:di="urn:BDA:bdmv;discinfo">
<di:title>
<di:name>Movie Title Name Goes Here</di:name>
<di:numSets>1</di:numSets>
<di:setNumber>1</di:setNumber>
</di:title>
<di:description>
<di:tableOfContents>
<di:titleName titleNumber="1">Menu</di:titleName>
<di:titleName titleNumber="2">Logos Warnings</di:titleName>
</di:tableOfContents>
<di:thumbnail href="FSJ_BD_Jacket_SML.jpg" />
<di:thumbnail href="FSJ_BD_Jacket_LRG.jpg" />
</di:description>
<di:language>eng</di:language>
</di:discinfo>
</disclib>

And the disc I made and tested works fine.
:thanks:

LowDead
20th November 2016, 12:13
As you can see in the code above, you can also put an icon in .jpg format. Not sure what size it should be though.

Some players(for example Playstation 3) can then display a picture of the movie besides the title.

BD-RB copies these files if they are present on the original disc.

//LD

jdobbs
20th November 2016, 23:08
I guess I can add some code to create that file on the disc.

Rich86
21st November 2016, 05:08
I guess I can add some code to create that file on the disc.

That would be terrific. Many thanks!