|
Please also read the
Disclaimer
MediaNet
- Helper Modules - Tags
Purpose: to provide other modules with the
ability to get at tag information in supported files and/or use folder names
LOADER.xml
<loader>
<instance>
<helper module="TAGS" enabled="y" />
specify here
whether tags is enabled, it must be enabled unless you have an alternative
tags module (you can also have more than one)
<mp3 format="" tags="Y" />
specify whether
to use tags and/or folder names for mp3 files
<wma format="" tags="Y" />
specify whether
to use tags and/or folder names for wma files
<wav format="{title}" />
specify folder
names for wav files
<flac format="" tags="Y" id3="N"
vorbis="Y" genre="genre" artist="artist" album="album" track="track"
title="title" />
specify folder
names, whether to use tags, whether to use id3 tags and the flac tag names
for flac files
<ogg format="" tags="Y" id3="N"
vorbis="Y" genre="genre" artist="artist" album="album" track="track"
title="title" />
specify folder
names, whether to use tags, whether to use id3 tags and the flac tag names
for ogg files
<defaults genre="Other"
artist="Unknown" album="Unknown" track="Untitled" />
specify
defaults for information that cannot be found
</instance>
</loader>
The format of format= is the parts to
extract from folder and/or filename like so:
{genre}\{artist}\{album}\{track} - {title}
or any combination that matches your folder/file structure track=track no,
format="" means no format used (so ensure tags="y")
There is also a tags.xml file which
contains the texts for ID3v1 tags
|