in reply to Re^2: Help with reading MP3's
in thread Help with reading MP3's
Substitute "file.mp3" with whatever your mp3 file name is.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);
|
|---|