WMA(3pm) | User Contributed Perl Documentation | WMA(3pm) |
Audio::WMA - Perl extension for reading WMA/ASF Metadata
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"; }
This module implements access to metadata contained in WMA files.
Create a new Audio::WMA instance from the data in $file
Get the audio data information in the form of a hash ref.
Get the metadata / tag information in the form of a hash ref.
Get the current ASF stream.
Parse a standalone ASF object.
Toggle debugging.
Toggle Encoding metadata tags as UTF-8
Toggle debugging.
Audio::FLAC::Header, <http://getid3.sf.net/>
http://github.com/dsully/perl-audio/tree/master/Audio-WMA
Dan Sully, <daniel | at | cpan.org>
Copyright 2003-2008 by Dan Sully & Logitech.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
2018-08-20 | perl v5.26.2 |