Subject: | documentation bug |
Date: | Sun, 24 Feb 2013 18:09:18 -0700 |
To: | bug-Music-Tag-FLAC [...] rt.cpan.org |
From: | Robert Rodriguez <robertro.rod [...] gmail.com> |
Hi first off, thank you for this interface to FLAC audio tags. It's
fantastic and has saved me alot of work.
I just wanted to point out that in the documentation page it says:
use Music::Tag
my $filename = "/var/lib/music/artist/album/track.flac";
my $info = Music::Tag->new($filename, { quiet => 1 }, "FLAC");
$info->get_info();
print "Artist is ", $info->artist;
I believe it should say:
use Music::Tag
my $filename = "/var/lib/music/artist/album/track.flac";
my $info = Music::Tag->new($filename, { quiet => 1 }, "FLAC");
$info->*get_tag*();
print "Artist is ", $info->artist;