After checking a DCP I had made with a previous version of DOM with the newest Player release, I received the following warning (which did not show previously):
'The XML in the subtitle asset (name of the asset) has more than one namespace declaration.'
What does this warning mean in human language?
Namespace declaration
-
- Posts: 43
- Joined: Mon May 17, 2021 1:15 pm
Re: Namespace declaration
Previously DoM versions declared two namespaces in subtitle xml files:
dcst:SubtitleReel xmlns:dcst="http://www.smpte-ra.org/schemas/428-7/2010/DCST" xmlns:xs="http://www.w3.org/2001/XMLSchema">
here there is dcst and xs
But one is enough :
<SubtitleReel xmlns="http://www.smpte-ra.org/schemas/428-7/2014/DCST">
it doesn't matter at all; it will work anyway
dcst:SubtitleReel xmlns:dcst="http://www.smpte-ra.org/schemas/428-7/2010/DCST" xmlns:xs="http://www.w3.org/2001/XMLSchema">
here there is dcst and xs
But one is enough :
<SubtitleReel xmlns="http://www.smpte-ra.org/schemas/428-7/2014/DCST">
it doesn't matter at all; it will work anyway