Content Detail
Content items
In metadata, the TitleDetail element is used to provide information about the title of the content, as well as any chapter or scene titles that may be included. This information is important for organizing and categorizing the content as well as for helping viewers find the parts they are looking for.
- The ContentDetail block consists of multiple ContentItem elements, with each element representing a part of the table of contents.
- Each ContentItem element has a LevelSequenceNumber, which indicates the hierarchical position of the corresponding part in the table of contents (1.1, 1.2, 1.3, etc.).
- Within the ContentItem element, there is the AVItem element, which contains an AVItemType with a value of "03".
...
- Het ContentDetail-blok bevat meerdere ContentItem-elementen, waarbij elk element een onderdeel van de inhoudsopgave vertegenwoordigt.
- Elk ContentItem-element heeft een LevelSequenceNumber, dat de hiërarchische positie van het betreffende onderdeel in de inhoudsopgave aangeeft (1.1, 1.2, 1.3, enz.).
- Binnen het ContentItem-element bevindt zich het AVItem-element, dat een AVItemType met de waarde "03" bevat. V
...
- .
Code Block | ||||
---|---|---|---|---|
| ||||
<ContentDetail> <ContentItem> <LevelSequenceNumber>1.1</LevelSequenceNumber> <AVItem> <AVItemType>03</AVItemType> </AVItem> <TitleDetail> <TitleType>01</TitleType> <TitleElement> <TitleElementLevel>04</TitleElementLevel> <TitleText>Proloog</TitleText> </TitleElement> </TitleDetail> </ContentItem> <ContentItem> <LevelSequenceNumber>1.2</LevelSequenceNumber> <AVItem> <AVItemType>03</AVItemType> </AVItem> <TitleDetail> <TitleType>01</TitleType> <TitleElement> <TitleElementLevel>04</TitleElementLevel> <TitleText>Hoofdstuk 1</TitleText> </TitleElement> </TitleDetail> </ContentItem> <ContentItem> <LevelSequenceNumber>1.3</LevelSequenceNumber> <AVItem> <AVItemType>03</AVItemType> </AVItem> <TitleDetail> <TitleType>01</TitleType> <TitleElement> <TitleElementLevel>04</TitleElementLevel> <TitleText>Hoofdstuk 2</TitleText> </TitleElement> </TitleDetail> </ContentItem> </ContentDetail> |