Query: audio::wma
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
WMA(3pm) User Contributed Perl Documentation WMA(3pm)NAMEAudio::WMA - Perl extension for reading WMA/ASF MetadataSYNOPSISuse Audio::WMA; my $wma = Audio::WMA->new($file); my $info = $wma->info(); foreach (keys %$info) { print "$_: $info->{$_} "; } my $tags = $wma->tags(); foreach (keys %$tags) { print "$_: $tags->{$_} "; }DESCRIPTIONThis module implements access to metadata contained in WMA files.METHODSo new( $file ) Create a new Audio::WMA instance from the data in $file o info( ) Get the audio data information in the form of a hash ref. o tags( ) Get the metadata / tag information in the form of a hash ref. o stream( ) Get the current ASF stream. o parseObject( $asf ) Parse a standalone ASF object. o setDebug( 0 | 1 ) Toggle debugging. o setConvertTagsToUTF8( 0 | 1 ) Toggle Encoding metadata tags as UTF-8 Toggle debugging.SEE ALSOAudio::FLAC::Header, <http://getid3.sf.net/> http://github.com/dsully/perl-audio/tree/master/Audio-WMAAUTHORDan Sully, <daniel | at | cpan.org>COPYRIGHT AND LICENSECopyright 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. perl v5.10.0 2008-11-29 WMA(3pm)