| Audio-TagLib documentation | Contained in the Audio-TagLib distribution. |
Audio::TagLib::Ogg::Vorbis::File - An implementation of Ogg::File with Vorbis specific methods
use Audio::TagLib::Ogg::Vorbis::File;
my $i = Audio::TagLib::Ogg::Vorbis::File->new("sample vorblis file.ogg");
print $i->tag()->comment()->toCString(), "\n"; # got comment
This is the central class in the Ogg Vorbis metadata processing collection of classes. It's built upon Ogg::File which handles processing of the Ogg logical bitstream and breaking it down into pages which are handled by the codec implementations, in this case Vorbis specifically.
Contructs a Vorbis file from $file. If $readProperties is true the file's audio properties will also be read using $propertiesStyle. If false, $propertiesStyle is ignored.
Destroys this instance of the File.
Returns the XiphComment for this file. XiphComment implements the tag interface, so this serves as the reimplementation of Audio::TagLib::File::tag().
Returns the Vorbis::Properties for this file. If no audio properties were read then this will return undef.
Saves the File.
None by default.
Dongxu Ma, <dongxu@cpan.org>
Copyright (C) 2005 by Dongxu Ma
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.7 or, at your option, any later version of Perl 5 you may have available.
| Audio-TagLib documentation | Contained in the Audio-TagLib distribution. |
package Audio::TagLib::Ogg::Vorbis::File; use 5.008003; use strict; use warnings; our $VERSION = '1.41'; use Audio::TagLib; our @ISA = qw(Audio::TagLib::Ogg::File); # Preloaded methods go here. BEGIN : { no strict 'refs'; unless (grep {/^new$/ } keys %__PACKAGE__::) { *Audio::TagLib::Ogg::Vorbis::File:: = *Audio::TagLib::Vorbis::File:: ; } } 1; __END__ # Below is stub documentation for your module. You'd better edit it!