How to read title and id from Blu

是否有可能在Windows7 +平台上以编程方式获取蓝光光盘ID和标题?


If you can programmatically open the following files you'll probably get what you need:

/AACS/mcmf.xml - This file is the Managed Copy manifest file and will contain a 'contentID' attribute (in the mcmfManifest tag) that can be used to identify the disc. Typically it is a 32 hexadecimal digit string.

There is sometimes, also an /CERTIFICATE/id.bdmv file which contains a 4 byte disc organization id (at byte offset 40) followed by a 16 byte disc id.

Sometimes, there is metadata information in the /BDMV/META/DL directory in the XML file bdmt_eng.xml (replace eng for other 3 letter language codes for other languages). For example on the supplemetary disc of The Dark Knight I see this file contains:

<di:title><di:name>The Dark Knight Bonus Disc</di:name></di:title>


对于.NET,BDInfo库将解析相关的光盘结构。

链接地址: http://www.djcxy.com/p/9564.html

上一篇: 在xib中添加UISearchBar作为tableHeaderView不起作用

下一篇: 如何从Blu中读取标题和ID