- status: open --> open-accepted
When generating an XML file (either GUI or command line) for a DVD a XML report will be generated including the & character in the menu attributes.
F.e.
<track type="Menu" streamid="1">
<List__Audio_>0</List__Audio_>
<List__Subtitles_4_3_>0 / 0 / 0</List__Subtitles_4_3_>
<List__Subtitles_Wide_>0 / 2 / 4</List__Subtitles_Wide_>
<List__Subtitles_Letterbox_>1 / 3 / 5</List__Subtitles_Letterbox_>
<List__Subtitles_Pan&Scan_>0 / 0 / 0</List__Subtitles_Pan&Scan_>
</track>
However, & is not a valid charachter in XML, so an import of the MediaInfo outputted XML will crash on the & in Pan&Scan.
Possible solution:
- Replace & with _
- An ampersand (&) may be escaped numerically (&) or with a general entity (&).