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