I seem to have tried everything in creating my own XML playlist to play multiple videos, but it just never works and I just dont get it anymore. This is the structure I'm using for the XML file:
<playlist version="1">
<title>XSPF Example Playlist</title>
<info>http:/xspf.org/xspf-v1.html</info>
<trackList>
<track>
<title>Test video 1</title>
<location>http://www.mysite.com/test.flv</location>
<info>http://www.mysite.com/test.flv</info>
</track>
<track>
<title>Test Video 2</title>
<location>http://www.mysite.com/test.flv</location>
<info>http://www.mysite.com/test.flv</info>
</track>
</trackList>
</playlist>
-------------
When I run it, it will create the box, but no video loads and no sidebar items show, even though the FLVs and XML file are in the right place and being referenced. (of course I put "mysite.com" in there just for example). In looking at that code, do you know what is causing it to not work? Thanks
Your playlist looks OK. The best way to test playlists and the availability of media files is to copy & paste the URIs into your browser and see if you get a valid XML file (most browsers will validate the XML to varying degrees) and see if you can download the media files.
http://www.mysite.com/playlist.xml
http://www.mysite.com/test.flv
Also, the mediaplayer.swf and the playlist.xml must come from the exact same domain. It's hard to tell if you are doing that without seeing your player code or a link to your page.