VISIT MY MORE DETAILED TUTORIALClick to view attachmentThe solution to this would be to convert the files to .mp3 and upload them to an external source that accept that format of file like
Fileden. You need to convert the files so that they are going to be compatible with the player that is attached to the top of the post. To prove that the method i will guide you through will work check mine out
by clicking here..
Open the playlist file from the download and you will see the following:
CODE
<?xml version="1.0" encoding="UTF-8"?>
<xml>
<track>
<path>PUT THE WEB ADDRESS OF THE FILE YOU WANT. FOR EXAMPLE HTTP://WWW.FILEDEN/FILE1.MP3</path>
<title>PUT THE TEXT THAT YOU WANT TO APPEAR FOR THE SONG NAME</title>
</track>
<track>
<path></path>
<title></title>
</track>
<track>
<path></path>
<title></title>
</track>
<track>
<path></path>
<title></title>
</track>
<track>
<path></path>
<title></title>
</track>
<track>
<path></path>
<title></title>
</track>
<track>
<path></path>
<title></title>
</track>
<track>
<path></path>
<title></title>
</track>
<track>
<path></path>
<title></title>
</track>
<track>
<path></path>
<title></title>
</track>
<track>
<path></path>
<title></title>
</track>
<track>
<path></path>
<title></title>
</track>
</xml>
- In between <path> and </path> put the location of the file in web address form. For example if i have a song at
http://fileden.com/upload/bashy.mp3 the code for the path will look like this:
<path>http://fileden.com/upload/bashy.mp3</path>
- In between the <title> and </title> put the text that you want to appear within the player for the song name. For example if i have Bashy Who Wants To Be A Millionaire at
http://fileden.com/upload/bashy.mp3 the title i will use is:
Bashy - Who Wants To Be A Millionaire. The result of this will be:
<title>Bashy - Who Wants To Be A Millionaire</title>
- So the final code for Bashy Who Wants To Be A Millionaire would be:
CODE
<track>
<path>http://fileden.com/upload/bashy.mp3</path>
<title>Bashy - Who Wants To Be A Millionaire</title>
</track>
- Do this for all the song you have so that when you have finished you will have your playlist file.
- Now open the file called sampleEmbedCode with notepad. (the file is in the download) Find and copy the following from the file:
CODE
<script type="text/javascript" src="swfobject.js"></script>
<div id="flashPlayer">
This text will be replaced by the flash music player.
</div>
<script type="text/javascript">
var so = new SWFObject("playerMultipleList.swf", "mymovie", "545", "700", "7", "#FFFFFF");
so.addVariable("autoPlay","no")
so.addVariable("playlistPath","playlist.xml")
so.write("flashPlayer");
</script>
- Paste the code into the body of the html page that you want it to display on and set the allignments to suit your webpage by editing the following part of the code:
CODE
mymovie", "545", "700", "7"
- Upload the following files from the download: playerMultipleList, playlist, swfobject as well as the html document you embedded it on.
Good Luck Ben P
Contact me if you need any help. benpadgett@techemail.com