logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Audio::File - Audio file abstraction library

Author

       Florian Ragwitz <flora@cpan.org>

Description

       Audio::File abstracts a single audio file, independent of its format. Using this module you can access a
       files meta-info like title, album, etc. as well as the file's audio properties like its length and
       bitrate.

       Currently only the formats flac, ogg vorbis and mp3 are supported, but support for other formats may be
       easily added.

Methods

new
         $file = Audio::File->new( "foobar.flac" );

       Constructor. It takes the filename of the your audio file as its only argument and returns an instance of
       Audio::File::${Type} if the corresponding file type is supported. The file type will be determined using
       the file extension.  Currently flac, ogg and mp3 are supported but new formats may be added easily by
       creating a Audio::File::${Type} that inherits from Audio::File::Type, which is the base class for all
       file type classes.

       The methods and behaviour of the returned are documented in Audio::File::Type.

Name

       Audio::File - Audio file abstraction library

See Also

       Audio::File::Type, Audio::File::Tag, Audio::File::AudioProperties

Synopsis

         use Audio::File;
         my $file = Audio::File->new( "foo.bar" );

         print "The ". $file->type() ."-file ". $file->name
                       ." is ". int $file->audio_properties->length() ." seconds long.\n";

         print "It's interpreted by ". $file->tag->artist()
                       ." and called ". $file->tag->title() ".\n";

Todo

       •   Add possibility to change file and its tags.

       •   better (easier) interface?

       •   user shouldn't be forced to use Audio::File if he only wants the files tag or audio properties.

       •   Add possibility to access raw audio data (Audio::File::Data)

           That could be done via Audio::Data or equivalent.

See Also