How to make a XML driven Flash MP3 player with Aleo Flash MP3 Player Builder?
With Aleo Flash MP3 Player Builder, you can make a XML driven Flash MP3 player for your website. You may download the free trial version of this software at Download.
Step 1: Make Flash MP3 Player with Aleo Flash MP3 Player Builder.
Step 2: Edit XML file.
After publishing, the software will generate below files in the specified output folder:
- player.html: HTML file includes the Flash MP3 Player. You may open this file to test the Flash Music player.
- player.swf: Flash MP3 Player SWF file.
- player.xml: XML track list file.
- track1.mp3: MP3 music file.
- track2.mp3: MP3 music file.
Now, you can open the generated player.xml file with a text editor, for example, Windows Notepad. The XML file may look like below:<player>
<playlist>
<track>
<file>track1.mp3</file>
<title>Track 1</title>
<artist>Steve Larkman</artist>
<album>Hope, Love and Glory</album>
</track>
<track>
<file>track2.mp3</file>
<title>Track 2</title>
<artist>Steve Larkman</artist>
<album>Hope, Love and Glory</album>
</track>
</playlist>
</player>To add more MP3 files to the track list, you can edit the XML file and add items to it.For example, if you want to add track3.mp3 and track4.mp3 to the track list, firstly, please copy the two files to the same folder as the player.xml file, then you can modify the player.xml file as below:<player>
<playlist>
<track>
<file>track1.mp3</file>
<title>Track 1</title>
<artist>Steve Larkman</artist>
<album>Hope, Love and Glory</album>
</track>
<track>
<file>track2.mp3</file>
<title>Track 2</title>
<artist>Steve Larkman</artist>
<album>Hope, Love and Glory</album>
</track>
<track>
<file>track3.mp3</file>
<title>Track 3</title>
<artist>Steve Larkman</artist>
<album>Hope, Love and Glory</album>
</track>
<track>
<file>track4.mp3</file>
<title>Track 4</title>
<artist>Steve Larkman</artist>
<album>Hope, Love and Glory</album>
</track> </playlist>
</player>Please note, when uploading Flash music player to your web server, you must upload all of the files, including the player.swf, player.xml and all mp3 files to the same folder.
No comments