I'M GOING MAD WITH THIS TAGGING MATTER!!!!
1- if i put additional tags (BAND, CONDUCTOR, COMPOSER) on the flac file (with MP3TAG) and have an embedded or external cuesheet: these informations are not read. WHY?
2- if there is not a cuesheet, then the informations are read (WHY?), but SC does not recognizes the tracks.
3- now, after reading this thread, i tried putting in the cuesheet a single track tag like REM COMPOSER ".." (and so on for BAND and CONDUCTOR). what happens? it works! when i open an album in SC i can see all the tags . but in the album list i see the BAND (instead of ARTIST!)! WHY???!!!
at the end, all this tagging material is really very very chaotic (ID3v1-ID3v2.4 - VORBIS - CUESHEET....)
finally, the single-track file solution is the best.
there is only one problem with that: P2P. i mean, i like to find the complete album on my P2P program.... and i would like to share my music. i think that the album-file solution (with cuesheet embedded) would be perfect for this. that's all. usually, we can find complete albumbs in RAR archives, but they are not compatible with SC.
bye
nidzo
Results 51 to 52 of 52
Thread: FLAC choices
-
2009-03-30, 17:22 #51Junior Member
- Join Date
- Mar 2009
- Posts
- 6
Flac madness
-
2009-08-20, 23:51 #52Member
- Join Date
- Apr 2006
- Posts
- 97
I've been looking into this. I think it would be worth it, since I believe it's just small change in CUE.pm:
(edit: here's my patch for this)
(hmm... is it a bug that DISC and DISCC aren't in that list of tags to merge?)Code:--- CUE.pm.orig Fri Aug 21 00:53:21 2009 +++ CUE.pm.new Fri Aug 28 01:12:25 2009 @@ -69,7 +69,7 @@ $cuesheet->{'ARTIST'} = $1; - } elsif ($line =~ /^(?:REM\s+)?(YEAR|GENRE|DISC|DISCC|COMMENT)\s+\"(.*)\"/i) { + } elsif ($line =~ /^(?:REM\s+)?(YEAR|GENRE|DISC|DISCC|COMMENT|ARTISTSORT|ALBUMSORT|ALBUMARTISTSORT)\s+\"(.*)\"/i) { $cuesheet->{uc($1)} = $2; @@ -201,7 +201,7 @@ # Also - check the original file for any information that may # not be in the cue sheet. Bug 2668 - for my $attribute (qw(ARTIST ALBUM YEAR GENRE REPLAYGAIN_ALBUM_GAIN REPLAYGAIN_ALBUM_PEAK)) { + for my $attribute (qw(ARTIST ALBUM YEAR GENRE REPLAYGAIN_ALBUM_GAIN REPLAYGAIN_ALBUM_PEAK ARTISTSORT ALBUMSORT ALBUMARTISTSORT)) { if (!$cuesheet->{$attribute}) { @@ -273,7 +273,7 @@ } # Merge in file level attributes - for my $attribute (qw(ARTIST ALBUM YEAR GENRE COMMENT REPLAYGAIN_ALBUM_GAIN REPLAYGAIN_ALBUM_PEAK)) { + for my $attribute (qw(ARTIST ALBUM YEAR GENRE COMMENT REPLAYGAIN_ALBUM_GAIN REPLAYGAIN_ALBUM_PEAK ARTISTSORT ALBUMSORT ALBUMARTISTSORT)) { if (!exists $track->{$attribute} && defined $cuesheet->{$attribute}) {
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 simple 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.
-- TLast edited by TimothyB; 2009-08-28 at 01:29. Reason: provide patch code


Reply With Quote
