agbagb;446159 Wrote:
> No - even running the latest release, I'm still seeing hundreds of
> "Tracknumber not numeric..." error messages.
>
> AGB
These are -not- error messages (talking about v0.3.0rc1 here), but
information on the same level as "Writing tags to ..." or "Transcoding
...". They can be suppressed (unfortunately together with all other
info) by using the --quiet option (see flac2mp3.pl -usage for info).
A better idea, if you (as I do!) find these messages annoying, is
perhaps to comment away lines 664-665 like this:
Code:
--------------------
sub fixUpTrackNumber {
my ( $trackNum, $filename ) = @_;
# Check TRACKNUMBER tag is not empty
if ($trackNum) {
# Check TRACKNUMBER tag is numeric
if ( looks_like_number($trackNum) ) {
$trackNum = sprintf( "%02u", $trackNum );
}
else {
# $::Options{info}
# && msg("TRACKNUMBER not numeric in $filename");
}
}
return $trackNum;
}
--------------------
--
gnypp45
------------------------------------------------------------------------
gnypp45's Profile: http://forums.slimdevices.com/member.php?userid=15106
View this thread: http://forums.slimdevices.com/showthread.php?t=66321
_______________________________________________
ripping mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/ripping