MP3::Find::Base 0.06 review
Download
|
|
MP3::Find::Base is a base class for MP3::Find backends.
SYNOPSIS
package MyFinder;
use base 'MP3::Find::Base';
sub search {
my $self = shift;
my ($query, $dirs, $sort, $options) = @_;
# do something to find and sort the mp3s...
my @results = do_something(...);
return @results;
}
package main;
my $finder = MyFinder->new;
# see MP3::Find for details about %options
print "$_n" foreach $finder->find_mp3s(%options);
This is the base class for the classes that actually do the searching and sorting for MP3::Find.
Requirements:
Perl
MP3::Find::Base 0.06 keywords