package Audio::TagLib::ID3v2::UnknownFrame; use 5.008003; use strict; use warnings; our $VERSION = '1.41'; use Audio::TagLib; our @ISA = qw(Audio::TagLib::ID3v2::Frame); # Preloaded methods go here. 1; __END__ # Below is stub documentation for your module. You'd better edit it! =head1 NAME Audio::TagLib::ID3v2::UnknownFrame - A frame type unkown to Audio::TagLib =head1 SYNOPSIS use Audio::TagLib::ID3v2::UnknownFrame; my $i = Audio::TagLib::ID3v2::UnknownFrame->new( Audio::TagLib::ByteVector->new("blah")); print $i->data()->data(), "\n"; # got "blah" =head1 DESCRIPTION This class represents a frame type not known (or more often simply unimplemented) in Audio::TagLib. This is here provide a basic API for manipulating the binary data of unknown frames and to provide a means of rendering such unknown frames. Please note that a cleaner way of handling frame types that Audio::TagLib does not understand is to subclass ID3v2::Frame and ID3v2::FrameFactory to have your frame type supported through the standard ID3v2 mechanism. =over =item I $data)> Constructs an unknown frame based on $data. =item I Destroys the instance. =item I toString()> see L =item I data()> Returns the field data (everything but the header) for this frame. =back =head2 EXPORT None by default. =head1 SEE ALSO L L =head1 AUTHOR Dongxu Ma, Edongxu@cpan.orgE =head1 COPYRIGHT AND LICENSE 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. =cut