.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "AnyData::Format::Mp3 3pm" .TH AnyData::Format::Mp3 3pm "2023-08-06" "perl v5.36.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" AnyData::Format::Mp3 \- tied hash and DBI access to Mp3 files .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 5 \& use AnyData; \& my $playlist = adTie( \*(AqPasswd\*(Aq, [\*(Aqc:/My Music/\*(Aq] ); \& while (my $song = each %$playlist){ \& print $song\->{artist} if $song\->{genre} eq \*(AqReggae\*(Aq \& } \& \& OR \& \& use DBI \& my $dbh = DBI\->connect(\*(Aqdbi:AnyData:\*(Aq); \& $dbh\->func(\*(Aqplaylist\*(Aq,\*(AqMp3,[\*(Aqc:/My Music\*(Aq],\*(Aqad_catalog\*(Aq); \& my $playlist = $dbh\->selectall_arrayref( qq{ \& SELECT artist, title FROM playlist WHERE genre = \*(AqReggae\*(Aq \& }); \& # ... other DBI/SQL operations .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" This module provides a tied hash interface and a \s-1DBI/SQL\s0 interface to \s-1MP\s0 files. It creates an in-memory database or hash from the Mp3 files themselves without actually creating a separate database file. This means that the database is automatically updated just by moving files in or out of the directories. .PP Many mp3 (mpeg three) music files contain a header describing the song name, artist, and other information about the music. .PP Simply choose 'Mp3' as the format and give a reference to an array of directories containing mp3 files. Each file in those directories will become a record containing the fields: .PP .Vb 7 \& song \& artist \& album \& year \& genre \& filename \& filesize .Ve .PP This module is a submodule of the AnyData.pm and DBD::AnyData.pm modules. Refer to their documentation for further details. .SH "AUTHOR & COPYRIGHT" .IX Header "AUTHOR & COPYRIGHT" copyright 2000, Jeff Zucker all rights reserved