pastebin - collaborative debugging tool
kpaste.net RSS


perl flac tag script
Posted by Admin on Thu 17th Mar 2011 15:11
raw | new post
view followups (newest first): perl flac tag script by Admin and perl flac tag script by Admin

  1. #!/opt/local/bin/perl
  2.  
  3. use 5.010;
  4. use strict;
  5. use warnings;
  6. use File::Find qw(find);
  7.  
  8. my $library = "F:/Music";
  9. #$library = "F:/FLAC/Downloaded/New";
  10. my %files;
  11.  
  12. find({ wanted => \&action, no_chdir => 1 }, $library);
  13.  
  14. sub action {
  15.         if (-d) {
  16.                 my $dn = $File::Find::name;
  17.                 %files = getfiles($dn);
  18.                 my $fc = keys %files;
  19. #               say $fc;
  20.                 unless ($fc == 0) {
  21.                         foreach my $fn (sort(keys %files)) {
  22.                                 rmtag($fn, 'discnumber', 'disctotal', 'rating', 'comment');
  23.                                 replaygain($fn);
  24.                                 albumartist($fn, $fc);
  25.                                 track($fn);
  26.                                 totaltracks($fn, $fc);
  27. #                               empty($fn);
  28. #                               duplicate($fn);
  29.                         }
  30.                 }
  31.  
  32.  
  33.                 undef %files;
  34.         }
  35. }
  36. # Make this subroutine and the whole script so that each file name is stored in a hash and that each member contains an anonymous hash with the tags (the alltags hash).
  37. # This means it won't have to look up the tags again for the albumartist subroutine.
  38.  
  39. sub gettags {
  40.         my $fn = shift;
  41.         my %alltags;
  42.         open(OUTPUT, '-|', qq{metaflac --no-utf8-convert --export-tags-to=- "$fn"}) || die "can\'t run metaflac: $!";
  43.         local $_;
  44.         while (<OUTPUT>) {
  45.                 chomp;
  46.                 my @tag = split('=');
  47.                 my $tagname = lc($tag[0]);
  48.                 if ($tag[1]) {
  49.                         push @{$alltags{$tagname}}, $tag[1];
  50.                 } else {
  51.                         push @{$alltags{$tagname}}, 'null';
  52.                 }
  53.         }
  54.         close(OUTPUT) || die "couldn\'t close metaflac: $!";
  55.         return %alltags;
  56. }
  57.  
  58. sub getfiles {
  59.         my $dn = shift;
  60.         my %files;
  61.         opendir(my $dh, $dn) or die "Can\'t open directory '$dn': $!";
  62.         foreach (readdir $dh) {
  63.                 my $fn = "$dn/$_";
  64.                 if (/.flac$/ && -f $fn) {
  65.                         $files{$fn} = { gettags($fn) };
  66.                 }
  67.         }
  68.         closedir $dh or die "Can\'t close directory '$dn': $!";
  69.         return %files;
  70. }
  71.  
  72. sub replaygain {
  73.         my $fn = shift;
  74.         unless ($files{$fn}{replaygain_reference_loudness}) {
  75.                 say "$fn: adding ReplayGain";
  76.                 system('metaflac', '--add-replay-gain', $fn);
  77.         }
  78. }
  79.  
  80. sub albumartist {
  81.         my $fn = shift;
  82.         my $tracks = shift;
  83.         if (!$files{$fn}{albumartist}) {
  84.                 my $albumartist = 'Various Artists';
  85.                 my %artist;
  86.                 my $max;
  87.                 if ($tracks == 1) {
  88.                         $max = $tracks;
  89.                 }
  90.                 else {
  91.                         $max = $tracks / 2;
  92.                 }
  93.                 foreach my $fn (keys %files) {
  94.                         $artist{$files{$fn}{artist}->[0]}++
  95.                 }
  96.                 if (keys(%artist) <= $max) {
  97.                         my $ac = 0;
  98.                         foreach my $a (keys %artist) {
  99.                                 if ($artist{$a} > $ac) {
  100.                                         $ac = $artist{$a};
  101.                                         $albumartist = $a;
  102.                                 }
  103.                         }
  104.                 }
  105.                 say "$fn: adding albumartist tag";
  106.                 system('metaflac', "--set-tag=ALBUMARTIST=$albumartist", $fn);
  107.         }
  108. }
  109.  
  110. sub empty {
  111.         my $fn = shift;
  112.         foreach my $k (keys %{$files{$fn}}) {
  113.                 foreach (@{$files{$fn}{$k}}) {
  114.                         if ($_ eq 'null') {
  115.                                 say "$fn: WARNING: empty $k tag";
  116.                         }
  117.                 }
  118.         }
  119. }
  120.  
  121. sub duplicate {
  122.         my $fn = shift;
  123.         my %exists;
  124.         foreach my $k (keys %{$files{$fn}}) {
  125.                 foreach (@{$files{$fn}{$k}}) {
  126.                         my $tag = quotemeta($k . '=' . $_);
  127.                         if ($exists{$tag}) {
  128.                                 say "$fn: WARNING: duplicate $k tag";
  129.                         } else {
  130.                                 $exists{$tag} = 1;
  131.                         }
  132.                 }
  133.         }
  134. }
  135.  
  136. sub track {
  137.         my $fn = shift;
  138.         my $track = $files{$fn}{tracknumber}->[0];
  139.         if ($track =~ m/^0/ && $track != 0) {
  140.                 say "$fn: fixing tracknumber tag";
  141.                 $track =~ s/^0+//;
  142.                 system('metaflac', '--remove-tag=TRACKNUMBER', "--set-tag=TRACKNUMBER=$track", $fn);
  143.         }
  144. }
  145.  
  146. sub totaltracks {
  147.         my $fn = shift;
  148.         my $tracks = shift;
  149.         if (
  150.         !$files{$fn}{totaltracks} &&
  151.         !$files{$fn}{tracktotal}
  152.         ) {
  153.                 say "$fn: adding totaltracks tag";
  154.                 system('metaflac', "--set-tag=TOTALTRACKS=$tracks", $fn);
  155.         }
  156.         elsif (
  157.         $files{$fn}{tracktotal} &&
  158.         !$files{$fn}{totaltracks}
  159.         ) {
  160.                 say "$fn: replacing tracktotal tag with totaltracks";
  161.                 system('metaflac', '--remove-tag=TRACKTOTAL', "--set-tag=TOTALTRACKS=$files{$fn}{tracktotal}->[0]", $fn);
  162.         }      
  163. }
  164.  
  165. sub rmtag {
  166.         my $fn = shift;
  167.         foreach (@_) {
  168.                 if ($files{$fn}{$_}) {
  169.                         say "$fn: removing $_ tag";
  170.                         system('metaflac', "--remove-tag=$_", $fn);
  171.                 }
  172.         }
  173. }

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at