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