package Audio::TagLib::ID3v2::UniqueFileIdentifierFrame; 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::UniqueFileIdentifierFrame - An implementation of ID3v2 unique identifier frames =head1 SYNOPSIS use Audio::TagLib::ID3v2::UniqueFileIdentifierFrame; my $i = Audio::TagLib::ID3v2::UniqueFileIdentifierFrame->new( Audio::TagLib::ByteVector->new("")); $i->setOwner(Audio::TagLib::String->new("blah")); print $i->owner()->toCString(), "\n"; # got "blah" =head1 DESCRIPTION This is an implementation of ID3v2 unique file identifier frames. This frame is used to identify the file in an arbitrary database identified by the owner field. =over =item I $data)> Creates a uniqe file identifier frame based on $data. =item I $owner, L $id)> Creates a unique file identifier frame with the owner $owner and the identification $id. =item I owner()> Returns the owner for the frame; essentially this is the key for determining which identification scheme this key belongs to. This will usually either be an email address or URL for the person or tool used to create the unique identifier. see I =item I identifier()> Returns the unique identifier. Though sometimes this is a text string it also may be binary data and as much should be assumed when handling it. =item I $s)> Sets the owner of the identification scheme to $s. see I =item I $v)> Sets the unique file identifier to $v. see I =item I toString()> see L =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