/usr/share/perl5/Audio/File/Mp3.pm is in libaudio-file-perl 0.11-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | package Audio::File::Mp3;
use strict;
use warnings;
use base qw( Audio::File::Type );
use Audio::File::Mp3::Tag;
use Audio::File::Mp3::AudioProperties;
our $VERSION = '0.05';
sub init {
return 1;
}
sub _create_tag {
my $self = shift;
$self->{tag} = Audio::File::Mp3::Tag->new( $self->name() ) or return;
return 1;
}
sub _create_audio_properties {
my $self = shift;
$self->{audio_properties} = Audio::File::Mp3::AudioProperties->new( $self->name() ) or return;
return 1;
}
1;
|