MP3::Info, line 1098, reads:
read $fh, my $bytes, 4;
This line is syntactically incorrect in older perls (5.6.x).
Please change this to
my $bytes;
read $fh, $bytes, 4;
Alternatively, you can explictly require 5.8 or later.