Hello
I used the wizad ...Hello
I used the wizad to create the mediaplayer with a playlist of flv movies example which was an xml file for blip tv but i need to know how to get my own videos into a playlist that fits into the side menu.
My website is at
http://www.geocities.com/go_robertboyer/TriUnityDreamTeam/TriUnity-DreamTeam3.html
if I simply give you 2 movies I want to have placed in the side menu can you create a xml playlist http link so in the wizard i can just enter that and the embed code will then play my movies? Maybe i need to setup a blog like the one that they have at there playlist file at: http://mirror.video.blip.tv/hot-shows.xml
Robert
You should download the JW Media Player package from here:[url=http://www.jeroenwijering.com/upload/mediaplayer-3-14.zip]download the FLV Media Player here[/url] and place the mediaplayer.swf and swfobject.js files on your own server/host.
A playlist is just a text file (use Notepad or another text editor to edit it), in this format:
<?xml version='1.0' encoding='UTF-8'?><playlist version='1' xmlns='http://xspf.org/ns/0/'>
<trackList>
<track>
<creator>Artist</creator>
<title>Song 1</title>
<location>http://my.domain.com/path-to-file/song1.mp3</location>
</track>
<track>
<creator>Artist</creator>
<title>Video 1</title>
<location>http://my.domain.com/path-to-file/video.flv</location>
<image>http://my.domain.com/path-to-file/preview.jpg</image>
<info>http://my.domain.com/</info>
</track>
</trackList>
</playlist>
Replace the data within the tags with your own data, then upload it to your server/host.
For example, replace this:
<creator>Artist</creator>with this:<creator>Robert</creator>to change the creator's name.