GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
WMA(3) User Contributed Perl Documentation WMA(3)

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.

  • new( $file )

    Create a new Audio::WMA instance from the data in $file

  • info( )

    Get the audio data information in the form of a hash ref.

  • tags( )

    Get the metadata / tag information in the form of a hash ref.

  • stream( )

    Get the current ASF stream.

  • parseObject( $asf )

    Parse a standalone ASF object.

  • setDebug( 0 | 1 )

    Toggle debugging.

  • setConvertTagsToUTF8( 0 | 1 )

    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.

2008-11-29 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.