1<?xml version="1.0" encoding="ISO-8859-1"?>
2
3<!DOCTYPE Tags SYSTEM "matroskatags.dtd">
4
5<Tags>
6  <Tag>
7    <Targets>
8      <!-- TrackUIDs and ChapterUIDs can occur more than once. -->
9      <TrackUID>1</TrackUID>
10      <TrackUID>2</TrackUID>
11      <TrackUID>3</TrackUID>
12      <TrackUID>4</TrackUID>
13      <ChapterUID>2</ChapterUID>
14      <ChapterUID>4</ChapterUID>
15      <ChapterUID>6</ChapterUID>
16      <ChapterUID>8</ChapterUID>
17    </Targets>
18
19    <!-- The new tagging system. It's more or less a 'Name=String' system, -->
20    <!-- but entries may also be nested. Also the Matroska specs give -->
21    <!-- you a set of pre-defined tag names for better cross-application -->
22    <!-- usability. However, you are free to use your own tag names. -->
23    <Simple>
24      <Name>LEAD_PERFORMER</Name>
25      <String>Tori Amos</String>
26    </Simple>
27    <Simple>
28      <Name>ALBUM</Name>
29      <String>Under the Pink</String>
30      <Simple>
31        <Name>TITLE</Name>
32        <String>Cornflake Girl</String>
33      </Simple>
34    </Simple>
35
36  </Tag>
37</Tags>
38