i write an plugin for kodi, which can be used to write the movie data from kodi into the mkv metadata. But i have a problem with that, although i have found the tag specification from mkv on https://matroska.org/technical/specs/tagging/index.html and used it. I have still a problem with with the album field and the title field.
In the specification, i have read that, the album/collection name is expressed by an TITLE Tag in targettypevalue 70 and the title of the movie is expressed by the title tag in targettypevalue 50
targettypevalue 70 is the collection area
targettypevalue 50 is the movie area
so why are the fields in vlc player switched? I see the album field is filled by the movie title and the title field is filled by the collection title.
Here is my mkv meta:
Code: Select all
<?xml version="1.0"?>
<!-- <!DOCTYPE Tags SYSTEM "matroskatags.dtd"> -->
<Tags>
<Tag>
<Targets>
<TargetTypeValue>70</TargetTypeValue>
<TargetType>COLLECTION</TargetType>
</Targets>
<Simple>
<Name>TITLE</Name>
<String>Alice in Wonderland Collection</String>
</Simple>
</Tag>
<Tag>
<Targets>
<TargetTypeValue>50</TargetTypeValue>
<TargetType>MOVIE</TargetType>
</Targets>
<Simple>
<Name>TITLE</Name>
<String>Alice in Wonderland</String>
</Simple>
</Tag>
</Tags>