MP3-Mplib
    
    
  
  
  
view release on metacpan or search on metacpan
=cut
sub new {
    my ($class, $file) = @_;
    $class = ref($class) || $class;
    my $self =  {   _mp_file        => $file,
                    _mp_id3v1       => undef,
                    _mp_id3v2       => undef, 
                    _mp_header      => undef, 
                    _mp_v2header    => undef,}; 
    bless $self => $class;
}
=pod
=over 4
=item B<header>
Returns a hash-ref to the mpeg-header.
( run in 0.627 second using v1.01-cache-2.11-cpan-c333fce770f )