wowo wrote:Or is here someone who can tell if or how I can change this in the scanning module ?
Or what the scanning module is called ?
Hello,
I'm interested in doing this myself, and as such have been working on a branch-mod of Subsonic in which I plan to incorporate several feature-requests and additional functionality.
Since Subsonic is open-source, I encourage anyone who is interested in helping out to check out the SVN.
Particularly you can find the JaudiotaggerParser.java file which controls the ID3 tag reading information here:
http://subsonic.svn.sourceforge.net/vie ... iew=markupYou may want to look specifically at these lines:
- Code: Select all
77 metaData.setYear(getTagField(tag, FieldKey.YEAR));
189 tag.setField(FieldKey.YEAR, StringUtils.trimToEmpty(metaData.getYear()));
I'm pretty sure these two lines control how the year is populated, but I'm not sure where to go from here...
I'm thinking 'FieldKey.ORIGYEAR' ?
Anyways, I am planning to dig a little deeper into the meta data stuff once I fix some of the other bugs I've added.