Changeset 6 in mp3-find
- Timestamp:
- 01/31/06 14:43:55 (19 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Changes
r3 r6 3 3 0.01 29 Jan 2006 4 4 - first CPAN release 5 6 0.02 7 - doc updates (thanks to Michael Slass for the suggestion) 8 -
trunk/lib/MP3/Find.pm
r3 r6 89 89 =item C<dir> 90 90 91 Where to start the search. This can either be a single string or 92 an arrayref. Defaults to your home directory.91 Arrayref or scalar; tell C<find_mp3s> where to start the search. 92 Directories in the arrayref are searched sequentially. 93 93 94 94 =item C<query> … … 98 98 or lower case; C<find_mp3s> will convert them into upper case for 99 99 you. Value may either be strings, which are converted into regular 100 exporessions, or may be C<qr [...]> regular expressions already.100 exporessions, or may be C<qr/.../> regular expressions already. 101 101 102 102 =item C<ignore_case> 103 103 104 Ignore case when matching search strings to the ID3 tag values. 104 Boolean, default false; set to a true value to ignore case when 105 matching search strings to the ID3 tag values. 105 106 106 107 =item C<exact_match> 107 108 108 Adds an implicit C<^> and C<$> around each query string. Does nothing 109 if the query is already a regular expression. 109 Boolean, default false; set to a true value to add an implicit 110 C<^> and C<$> around each query string. Does nothing if the query 111 term is already a regular expression. 110 112 111 113 =item C<sort> … … 138 140 =item C<no_format> 139 141 140 Causes C<find_mp3s> to return an array of hashrefs instead of an array 141 of (formatted) strings. Each hashref consists of the key-value pairs 142 from C<MP3::Info::get_mp3_tag> and C<MP3::Info::get_mp3_info>, plus 143 the key C<FILENAME> (with the obvious value ;-) 142 Boolean, default false; set to a true value to have C<find_mp3s> to 143 return an array of hashrefs instead of an array of (formatted) strings. 144 Each hashref consists of the key-value pairs from C<MP3::Info::get_mp3_tag> 145 and C<MP3::Info::get_mp3_info>, plus the key C<FILENAME> (with the obvious 146 value ;-) 144 147 145 148 @results = (
Note: See TracChangeset
for help on using the changeset viewer.