This is the story...
I'm developping an application to show info about "MP3 albums" stored in dirs,
thumbnail, cd art, and general info about audio files... (format, bitrate, etc..)
It's a kind of cataloguer / database (when It will be in a "stable version" I'll
post a new here).
The technical layout:
To avoid to scan all the audio files every time I show a folder I thinked in
collect all the data the first time and create an XML file in the folder where
to store the info about the album... so next times I only need to read an show
info stored in the XML file.
I'll add an option to "reescan folder" if necessary.
So I'm "designing" the XML structure, I'll appreciate your opinion...
Do you think there is some importante information missed?
Best regards and TIA.
b:.
<?xml version="1.0"?>
<albumdata>
<artist>Depeche Mode</artist>
<album>Violator</album>
<year>1990</year>
<genre>Pop</genre>
<time>40:35</time>
<tracks>
<track>
<title>Enjoy The Silence</title>
<time>6:36</time>
<tracknumber>01</tracknumber>
<format>MP3</format>
<encoder>LAME</encoder>
<mode>CBR</mode>
<bitrate>192</bitrate>
</track>
<track>
<title>Personal Jesus</title>
<time>6:36</time>
<tracknumber>02</tracknumber>
<format>MP3</format>
<encoder>LAME</encoder>
<mode>CBR</mode>
<bitrate>192</bitrate>
</track>
<track>
<title>World In My Eyes</title>
<time>6:36</time>
<tracknumber>03</tracknumber>
<format>MP3</format>
<encoder>LAME</encoder>
<mode>CBR</mode>
<bitrate>192</bitrate>
</track>
</tracks>
<URL>
<![CDATA[http://www.allmusic.com/cg/amg.dll?p=amg&uid=CASS70305150927&sql=Ariaxlf3e5cqq]]>
</URL>
<review>
In a word, stunning. Perhaps an odd word...........
</review>
</albumdata>