okay,
This is what I have done to learn how the module works, basically I just want to grab the metatag info that is already on the track and print it to the screen
This is what I have so far
Code:
use MP3::Tag;
$filename = d:\\Pierres_Tape_Library\\Labeled_Tracks\\April_20_1984_side_1.mp3;
$mp3 = MP3::Tag->new($filename);
$mp3->get_tags();
$id3v2 = $mp3->{ID3v2} if exists $mp3->{ID3v2};
print "The information in the metatag for the file is: $id3v2";
So I just get errors such as
Code:
Can't call method "get_tags" on an undefined value at mp3test.pl line 14
I DID install the module.