prabbit wrote: 
> This appears to be a LMS scanning bug. I tagged some files using Picard
> and got the same results. 
> 
> Thanks for your patience, Erland.
> 
No problem.

Something you could try since you seems to be on a Mac where the LMS
isn't compiled into a binary is to try to patch it.

I'm not sure exactly where the LMS is installed on the Mac, but if you
can find out where it is installed, the changes that potentially can
solve the problem is if you:
- Open Slim/Formats/Movie.pm in a text editor
- Change the line:
Code:
--------------------
    'MusicBrainz Track Id'     => 'MUSICBRAINZ_ID',
--------------------
to:
Code:
--------------------
    'MUSICBRAINZ TRACK ID'     => 'MUSICBRAINZ_ID',
--------------------


If this doesn't help LMS might be reading tags for m4a files in same way
as MP3 files and in that case you can also try to change
Slim/Formats/MP3.pm from:

Code:
--------------------
    
  my %tagMapping = (
  'MUSICBRAINZ ALBUM ARTIST'          => 'ALBUMARTIST',
  
--------------------

To:

Code:
--------------------
    
  my %tagMapping = (
  'MUSICBRAINZ TRACK ID'          => 'MUSICBRAINZ_ID',
  'MUSICBRAINZ ALBUM ARTIST'          => 'ALBUMARTIST',
  
--------------------


If you try the above and it solves it, please add information about it
in the bug report to make it easier for Logitech developers to correct
it.


------------------------------------------------------------------------
erland's Profile: http://forums.slimdevices.com/member.php?userid=3124
View this thread: http://forums.slimdevices.com/showthread.php?t=94909

_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to