Bump version and update Changes
[app-musicexpo.git] / lib / App / MusicExpo.pm
... / ...
CommitLineData
1package App::MusicExpo;
2use v5.14;
3use strict;
4use warnings;
5
6our $VERSION = '0.006';
7
8use Audio::FLAC::Header qw//;
9use HTML::Template::Compiled qw//;
10use Memoize qw/memoize/;
11use MP3::Info qw/get_mp3tag/;
12use Ogg::Vorbis::Header::PurePerl;
13use MP4::Info qw/get_mp4tag get_mp4info/;
14
15use DB_File qw//;
16use Encode qw/encode/;
17use File::Basename qw/fileparse/;
18use Fcntl qw/O_RDWR O_CREAT/;
19use Getopt::Long;
20use Storable qw/thaw freeze/;
21use sort 'stable';
22
23##################################################
24
25my $default_template;
26
27our $prefix='/music/';
28our $cache='';
29our $template='';
30
31GetOptions (
32 "template:s" => \$template,
33 "prefix:s" => \$prefix,
34 "cache:s" => \$cache,
35);
36
37sub flacinfo{
38 my $file=$_[0];
39 my $flac=Audio::FLAC::Header->new($file);
40
41 freeze +{
42 format => 'FLAC',
43 title => $flac->tags('TITLE'),
44 artist => $flac->tags('ARTIST'),
45 year => $flac->tags('DATE'),
46 album => $flac->tags('ALBUM'),
47 tracknumber => $flac->tags('TRACKNUMBER'),
48 tracktotal => $flac->tags('TRACKTOTAL'),
49 genre => $flac->tags('GENRE'),
50 file => scalar fileparse $file,
51 }
52}
53
54sub mp3info{
55 my $file=$_[0];
56 my %tag = map { encode 'UTF-8', $_ } %{get_mp3tag $file};
57 my @trkn = split '/', $tag{TRACKNUM} // '';
58
59 freeze +{
60 format => 'MP3',
61 title => $tag{TITLE},
62 artist => $tag{ARTIST},
63 year => $tag{YEAR},
64 album => $tag{ALBUM},
65 tracknumber => $trkn[0],
66 tracktotal => $trkn[1],
67 genre => $tag{GENRE},
68 file => scalar fileparse $file,
69 }
70}
71
72sub vorbisinfo{
73 my $file=$_[0];
74 my $ogg=Ogg::Vorbis::Header::PurePerl->new($file);
75
76 freeze +{
77 format => 'Vorbis',
78 title => scalar $ogg->comment('TITLE'),
79 artist => scalar $ogg->comment('artist'),
80 year => scalar $ogg->comment('DATE'),
81 album => scalar $ogg->comment('ALBUM'),
82 tracknumber => scalar $ogg->comment('TRACKNUMBER'),
83 tracktotal => scalar $ogg->comment('TRACKTOTAL'),
84 genre => scalar $ogg->comment('GENRE'),
85 file => scalar fileparse $file,
86 }
87}
88
89sub mp4_format ($){
90 my $encoding = $_[0];
91 return 'AAC' if $encoding eq 'mp4a';
92 return 'ALAC' if $encoding eq 'alac';
93 "MP4-$encoding"
94}
95
96sub mp4info{
97 my $file=$_[0];
98 my %tag = map { ref() ? $_ : encode 'UTF-8', $_ } %{get_mp4tag $file};
99 my %info = %{get_mp4info $file};
100
101 freeze +{
102 format => mp4_format $info{ENCODING},
103 title => $tag{TITLE},
104 artist => $tag{ARTIST},
105 year => $tag{YEAR},
106 album => $tag{ALBUM},
107 tracknumber => $tag{TRACKNUM},
108 tracktotal => ($tag{TRKN} ? $tag{TRKN}->[1] : undef),
109 genre => $tag{GENRE},
110 file => scalar fileparse $file,
111 };
112}
113
114my %info = (
115 '.flac' => \&flacinfo,
116 '.mp3' => \&mp3info,
117 '.ogg' => \&vorbisinfo,
118 '.oga' => \&vorbisinfo,
119 '.mp4' => \&mp4info,
120 '.aac' => \&mp4info,
121 '.m4a' => \&mp4info,
122);
123
124sub normalizer{
125 "$_[0]|".(stat $_[0])[9]
126}
127
128sub make_fragment{ join '-', map { lc =~ y/a-z0-9/_/csr } @_ }
129
130sub run {
131 my %info = %info;
132 if ($cache) {
133 tie my %cache, 'DB_File', $cache, O_RDWR|O_CREAT, 0644;
134 $info{$_} = memoize $info{$_}, INSTALL => undef, NORMALIZER => \&normalizer, LIST_CACHE => 'FAULT', SCALAR_CACHE => [HASH => \%cache] for keys %info;
135 }
136
137 my %files;
138 for my $file (@ARGV) {
139 my ($basename, undef, $suffix) = fileparse $file, keys %info;
140 $files{$basename} //= [];
141 push @{$files{$basename}}, thaw scalar $info{$suffix}->($file);
142 }
143
144 my $ht=HTML::Template::Compiled->new(
145 default_escape => 'HTML',
146 global_vars => 2,
147 $template eq '' ? (scalarref => \$default_template) : (filename => $template),
148 );
149
150 my @files;
151 for (sort keys %files) {
152 my @versions = @{$files{$_}};
153 my %entry = (formats => [], map { $_ => '?' } qw/title artist year album tracknumber tracktotal genre/);
154 for my $ver (@versions) {
155 push @{$entry{formats}}, {format => $ver->{format}, file => $ver->{file}};
156 for my $key (keys %$ver) {
157 $entry{$key} = $ver->{$key} if $ver->{$key} && $ver->{$key} ne '?';
158 }
159 }
160 delete $entry{$_} for qw/format file/;
161 $entry{fragment} = make_fragment @entry{qw/artist title/};
162 push @files, \%entry
163 }
164
165 @files = sort { $a->{title} cmp $b->{title} } @files;
166 $ht->param(files => \@files, prefix => $prefix);
167 print $ht->output;
168}
169
170$default_template = <<'HTML';
171<!DOCTYPE html>
172<title>Music</title>
173<meta charset="utf-8">
174<link rel="stylesheet" href="musicexpo.css">
175<script async defer type="application/javascript" src="player.js"></script>
176
177<div id="player"></div>
178
179<table border>
180<thead>
181<tr><th>Title<th>Artist<th>Album<th>Genre<th>Track<th>Year<th>Type
182<tbody><tmpl_loop files>
183<tr><td class="title"><a href="#<tmpl_var fragment>" data-hash="#<tmpl_var fragment>"><tmpl_var title></a><td class="artist"><tmpl_var artist><td class="album"><tmpl_var album><td class="genre"><tmpl_var genre><td class="track"><tmpl_var tracknumber>/<tmpl_var tracktotal><td class="year"><tmpl_var year><td class="formats"><tmpl_loop formats><a href="<tmpl_var ...prefix><tmpl_var ESCAPE=URL file>"><tmpl_var format></a> </tmpl_loop></tmpl_loop>
184</table>
185HTML
186
1871;
188
189__END__
190
191=encoding utf-8
192
193=head1 NAME
194
195App::MusicExpo - script which generates a HTML table of music tags
196
197=head1 SYNOPSIS
198
199 use App::MusicExpo;
200 App::MusicExpo->run;
201
202=head1 DESCRIPTION
203
204App::MusicExpo creates a HTML table from a list of songs.
205
206The default template looks like:
207
208 | Title | Artist | Album | Genre | Track | Year | Type |
209 |---------+---------+-----------------+---------+-------+------+------|
210 | Cellule | Silence | L'autre endroit | Electro | 01/09 | 2005 | FLAC |
211
212where the type is a download link. If you have multiple files with the same
213basename (such as C<cellule.flac> and C<cellule.ogg>), they will be treated
214as two versions of the same file, so a row will be created with two download
215links, one for each format.
216
217=head1 OPTIONS
218
219=over
220
221=item B<--template> I<template>
222
223Path to the HTML::Template::Compiled template used for generating the music table. If '' (empty), uses the default format. Is empty by default.
224
225=item B<--prefix> I<prefix>
226
227Prefix for download links. Defaults to '/music/'.
228
229=item B<--cache> I<filename>
230
231Path to the cache file. Created if it does not exist. If '' (empty), disables caching. Is empty by default.
232
233=back
234
235=head1 AUTHOR
236
237Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
238
239=head1 COPYRIGHT AND LICENSE
240
241Copyright (C) 2013-2015 by Marius Gavrilescu
242
243This library is free software; you can redistribute it and/or modify
244it under the same terms as Perl itself, either Perl version 5.14.2 or,
245at your option, any later version of Perl 5 you may have available.
This page took 0.00964 seconds and 4 git commands to generate.