Tutorial - Manually Create Music XML

music.xml


<?xml version='1.0'?>
<MusicDatabase>
<Songs>
<Song>
<Title>Love Me Do</Title>
<PerformingArtist>The Beatles</PerformingArtist>
<ContainedInAlbum>1</ContainedInAlbum>
<SongLength>2:20</SongLength>
<Year value="2000"/>
<Genre>Classic Rock</Genre>
<Location>
<Path>Z:\WWW\WWW-Pub\Media\Music\The Beatles\1\01 - Love Me Do.mp3</Path>
</Location>
</Song>
<Song>
<Title>From Me To You</Title>
<PerformingArtist>The Beatles</PerformingArtist>
<ContainedInAlbum>1</ContainedInAlbum>
<SongLength>1:56</SongLength>
<Year value="2000"/>
<Genre>Classic Rock</Genre>
<Location>
<Path>Z:\WWW\WWW-Pub\Media\Music\The Beatles\1\02 - From Me To You.mp3</Path>
</Location>
</Song>
.
.
.
<Song>
<Title>Take It Easy</Title>
<PerformingArtist>Eagles</PerformingArtist>
<ContainedInAlbum>The Very Best Of The Eagles</ContainedInAlbum>
<SongLength>3:32</SongLength>
<Year value="2007"/>
<Location>
<Path>Z:\WWW\WWW-Pub\Media\Music\Eagles\The Very Best Of The Eagles\01 - Take It Easy.mp3</Path>
</Location>
</Song>
<Song>
<Title>Witchy Woman</Title>
<PerformingArtist>Eagles</PerformingArtist>
<ContainedInAlbum>The Very Best Of The Eagles</ContainedInAlbum>
<SongLength>4:11</SongLength>
<Year value="2007"/>
<Location>
<Path>Z:\WWW\WWW-Pub\Media\Music\Eagles\The Very Best Of The Eagles\02 - Witchy Woman.mp3</Path>
</Location>
</Song>
.
.
.
</Songs>
</MusicDatabase>

NOTE:
The <SongLength> is in hh:mm:ss format.
The album art should be called "folder.jpg", and located in the same folder as the mp3 file.


Back | Next