Thank you for your answers!
One of the better ones I used,
Validate XML files
identified a problem which I corrected.
I'm not expecting you to help me with the rest of it,
as Hitchhiker commented,
that, I will have to post in another Forum,
but just to point out how difficult this is,
after the 1st problem corrected, Mozilla gave:
Code: Select all
Erreur d’analyse XML : balise ne correspondant pas. Attendu : </track>.
Emplacement : file:///C:/Users/Vaganza/Documents/playlists/Caching%201500%20VLC,%201a%20Different%20Channels%20.xspf
Numéro de ligne 6830, Colonne 4 :
</trackList>
----------^
and
Code Beautify (and the similar with others):
Code: Select all
Error : InvalidTag
Line : 6830
Message : Closing tag 'track' is expected inplace of 'trackList'.
and then "Validate..." goes on to say:
Code: Select all
Errors in the XML document:
6830: 9 The end-tag for element type "track" must end with a '>' delimiter.
showing the problem area:
Code: Select all
6823 <track>
6824 <location>http://Streamer/username/password/xxxxx</location>
6825 <title>Travel Channel</title>
6826 <extension application="http://www.videolan.org/vlc/playlist/0">
6827 <vlc:id>977</vlc:id>
6828 </extension>
6829 </track>
6830 </track
List>
6831 <extension application="http://www.videolan.org/vlc/playlist/0">
6832 <vlc:item tid="0"/>
How it looks now. Can you detect the error ? (rhetorical question) :
Code: Select all
<track>
6824 <location>http://Streamer/username/password/xxxxx</location>
<title>Travel Channel</title>
<extension application="http://www.videolan.org/vlc/playlist/0">
<vlc:id>977</vlc:id>
</extension>
</track>
</trackList>
6831 <extension application="http://www.videolan.org/vlc/playlist/0">
<vlc:item tid="0"/>
In another list, which is okay, it ends with:
Code: Select all
</extension>
</track>
</trackList>
7157 <extension application="http://www.videolan.org/vlc/playlist/0">
<vlc:item tid="0"/>
pasted the correct ending in the faulty list to no avail.