well i decided just to make a hash file with artist+album as the key and the total # of mp3s with that same artst & album name. here's that code:
foreach $song (@fulldirfiles) {
$mp3 = MP3::Tag->new($song);
($title, $track, $artist, $album, $comment, $year, $genre) =...