NAME

Music::Tag::LyricsFetcher - Plugin module for Music::Tag to fetch lyrics use Lyrics::Fetcher

SYNOPSIS

        use Music::Tag;

        my $info = Music::Tag->new($filename, { quiet => 1 });
        $info->add_plugin("Lyrics");
        $info->get_tag();
   
        print "Lyrics are ", $info->lyrics;

DESCRIPTION

Music::Tag::LyricsFetcher is an interface to David Precious' Lyrics::Fetcher module.

REQUIRED DATA VALUES

Artist and Title are required to be set before using this plugin.

SET DATA VALUES

lyrics

OPTIONS

lyricsfetchers

Optional array reference containing list of Lyrics::Fetcher plugins.

lyricsoverwrite

Overwrite lyrics, even if they exists.

METHODS

default_options

Returns the default options for the plugin.

set_tag

Not used by this plugin.

get_tag

Uses Lyrics::Fetcher to fetch lyrics and add to object.

set_values

Returns lyrics

BUGS

Let me know.

SEE ALSO

Music::Tag

SOURCE

Source is available at github: http://github.com/riemann42/Music-Tag-LyricsFetcher.

BUGTRACKING

Please use github for bug tracking: http://github.com/riemann42/Music-Tag-LyricsFetcher/issues.

AUTHOR

Edward Allen III <ealleniii _at_ cpan _dot_ org>

COPYRIGHT

Copyright (c) 2007,2008,2010 Edward Allen III. Some rights reserved.

LICENSE

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either:

a) the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version, or

b) the "Artistic License" which comes with Perl.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See either the GNU General Public License or the Artistic License for more details.

You should have received a copy of the Artistic License with this Kit, in the file named "Artistic". If not, I'll be glad to provide one.

You should also have received a copy of the GNU General Public License along with this program in the file named "Copying". If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA or visit their web page on the Internet at http://www.gnu.org/copyleft/gpl.html.