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