in reply to Re^2: Help with reading MP3's
in thread Help with reading MP3's

Let's assume you have an mp3 file named "file.mp3".
use MP3::Tag; use warnings; use strict; use Data::Dumper; my $file = 'file.mp3'; my $mp3 = MP3::Tag->new($file); $mp3->get_tags(); print Dumper($mp3);
Substitute "file.mp3" with whatever your mp3 file name is.

perlintro