cdmackay;407220 Wrote:
> So, it would appear that we're short of sorting tags, then? No way of
> getting SC to sort by a different tag than e.g. Arist, when using a cue
>
> file?
>
> Is it worth logging an RFE to add support for e.g. REM ARTISTSORT, etc?
I've been looking into this. I think it would be worth it, since I
believe it's just small change in CUE.pm:
Code:
--------------------
} elsif ($line =~
/^(?:REM\s+)?(YEAR|GENRE|DISC|DISCC|COMMENT)\s+\"(.*)\"/i) {
--------------------
to
Code:
--------------------
} elsif ($line =~
/^(?:REM\s+)?(YEAR|GENRE|DISC|DISCC|COMMENT|ARTISTSORT|ALBUMSORT)\s+\"(.*)\"/i)
{
--------------------
and
Code:
--------------------
for my $attribute (qw(ARTIST ALBUM YEAR GENRE
REPLAYGAIN_ALBUM_GAIN REPLAYGAIN_ALBUM_PEAK)) {
--------------------
to
Code:
--------------------
for my $attribute (qw(ARTIST ALBUM YEAR GENRE
REPLAYGAIN_ALBUM_GAIN REPLAYGAIN_ALBUM_PEAK ARTISTSORT ALBUMSORT)) {
--------------------
(hmm... is it a bug that DISC and DISCC aren't in that list of tags to
merge?)
Another thing I want is to be able to specify the cover art for an
album by putting something like a REM IMAGE line in the cue sheet. With
luck it will be a three-line addition to CUE.pm.
I'm in the camp of having the server on a remote machine, and when I'm
playing with tagging - I intend to personalize all my genres sometime -
it's much better to copy a few MB of cues and artwork than hundreds of
GB of FLAC files.
-- T
--
TimothyB
------------------------------------------------------------------------
TimothyB's Profile: http://forums.slimdevices.com/member.php?userid=4868
View this thread: http://forums.slimdevices.com/showthread.php?t=60945
_______________________________________________
ripping mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/ripping