Changeset 30 in flacrip for trunk/flactrack
- Timestamp:
- 11/26/14 22:44:08 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/flactrack
r17 r30 17 17 use Text::Unidecode; 18 18 19 # default to using tags 20 my $TAGS = 1; 21 19 22 GetOptions( 20 23 'D=s' => \my %TRACKS, … … 24 27 'dir|d=s' => \my $DIRECTORY, 25 28 'ascii-tags' => \my $ASCII_TAGS, 29 'tags!' => \$TAGS, 26 30 ); 27 31 … … 38 42 # for getting track metadata from MusicBrainz 39 43 my $info; 40 if ($ALL || $TYPE eq 'mp3') {44 if ($ALL || ($TYPE eq 'mp3' && $TAGS)) { 41 45 (my $properties_file = $FLAC_FILE) =~ s/\.flac$/.properties/; 42 46 if (-e $properties_file) {
Note: See TracChangeset
for help on using the changeset viewer.