| AudioFile-Find documentation | Contained in the AudioFile-Find distribution. |
AudioFile::Find - Find Audiofiles located on your harddisk. Supports MP3, WMA and Ogg Vorbis files.
Version 0.01
use AudioFile::Find;
my $finder = AudioFile::Find->new( 'some/dir' );
# find everything
my @audiofiles = $finder->search();
# specify a search directory
my @audiofiles = $finder->search( 'some/other/dir' );
#same for genre, title, track, artist and album
my @audiofiles = $finder->search( artist => 'Seeed' );
#search using a regex
my @audiofiles = $finder->search( 'some/other/dir', title => qr/Ding/ );
# anonymous subroutine that returns true or false
my @audiofiles = $finder->search( 'some/other/dir', track => sub { return shift > 10; } );
Creates an object of this class. Takes an optional single argument which is the directory to search in.
Sets and returns the directory to search.
Starts the search and returns a hash of filenames as keys and AudioFile::Info-Objects as values. You may specify a search directory as the first argument and also pass a hash with search criteria. See the synopsis for details.
Checks wether a given AudioFile::Info-Object meets given criteria. First argument is the Info-Object, second argument is a reference to the criteria hash.
Markus, <holli.holzer at googlemail.com>
Please report any bugs or feature requests to bug-audiofile-find at rt.cpan.org, or through
the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=AudioFile-Find. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc AudioFile::Find
You can also look for information at:
Copyright 2008 Markus 'holli' Holzer, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| AudioFile-Find documentation | Contained in the AudioFile-Find distribution. |
package AudioFile::Find; use warnings; use strict; use File::Find::Rule; use AudioFile::Info; use List::MoreUtils qw( zip ); use Data::Dumper;
our $VERSION = '0.01';
sub new { my ($class, $dir) = @_; return bless { dir => $dir }, $class; }
sub dir { my ($self, $dir) = @_; $self->{dir} = $dir if defined $dir; return $self->{dir}; }
sub search { my $self = shift; my $dir = @_ % 2 == 0 ? '' : shift; my $args = {@_}; my %audio; for ( File::Find::Rule->file()->name( '*.mp3', '*.ogg', '*.wma' )->in( $dir || $self->dir || '.' ) ) { my $info = AudioFile::Info->new($_); $audio{$_} = $info if $self->pass( $info, $args); } return %audio; }
sub pass { my ($self, $file, $criteria) = @_; my $crit = Dumper($criteria); while ( my ($key, $criterium) = each %$criteria ) { my $value = $file->$key; if ( ref($criterium) eq "Regexp" ) { return unless $value =~ $criterium; } elsif ( ref($criterium) eq "CODE" ) { return unless $criterium->( $file->$key ); } else { return unless $file->$key eq $criterium; } } return 1; }
1; # End of AudioFile::Find