Dan Sully > Audio-WMA-0.7 > Audio::WMA

Download:
Audio-WMA-0.7.tar.gz

Dependencies

Annotate this POD

CPAN RT

Open  0
Report a bug
Module Version: 0.7   Source   Latest Release: Audio-WMA-1.3

NAME ^

Audio::WMA - Perl extension for reading WMA/ASF Metadata

SYNOPSIS ^

        use Audio::WMA;

        my $wma  = Audio::WMA->new($file);

        my $info = $wma->info();

        foreach (keys %$info) {
                print "$_: $info->{$_}\n";
        }

        my $tags = $wma->tags();

        foreach (keys %$tags) {
                print "$_: $tags->{$_}\n";
        }

DESCRIPTION ^

This module implements access to metadata contained in WMA files.

SEE ALSO ^

Audio::FLAC::Header, http://getid3.sf.net/

AUTHOR ^

Dan Sully, <Dan@cpan.org>

COPYRIGHT AND LICENSE ^

Copyright 2003-2004 by Dan Sully

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.