1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
|
#!/usr/bin/env ruby
#
# omptagger
# http://github.com/omp/omptagger
# Modify and display metadata of audio files.
#
# Copyright 2007-2014 David Vazgenovich Shakaryan <dvshakaryan@gmail.com>
# Distributed under the terms of the GNU General Public License v3.
# See http://www.gnu.org/licenses/gpl.txt for the full license text.
#
# Dependencies:
# ruby http://www.ruby-lang.org/
# TagLib http://taglib.github.io/
# taglib-ruby http://robinst.github.io/taglib-ruby/
require 'getoptlong'
require 'taglib'
module Output
@@colour = true
def self.colour=(boolean)
@@colour = boolean
end
def self.colourise(string, colour)
return string unless @@colour
case colour
when :green
code = '32'
when :yellow
code = '33'
when :cyan
code = '36'
else
return string
end
"\e[#{code}m#{string}\e[0m"
end
def self.file(file)
puts colourise("#{file}:", :yellow)
end
def self.action(action)
puts " #{colourise("#{action}:", :green)}"
end
def self.field(field, value, padding = 0)
puts " #{colourise(field, :cyan)} #{' ' * padding} #{value}"
end
def self.info(info)
puts " #{info}"
end
def self.help
puts <<-end
Usage: omptagger [actions/options] [files]
Actions:
--view -v View all tags
--view-tag -t View a tag
--add-tag -a Add a tag
--set-tag -s Set a tag
--remove -r Remove all tags
--remove-tag -d Remove a tag
--generate -g Generate tags based on filename
--rename -m Rename file based on tags
--scheme -n Change file naming scheme
Options:
--no-colour -c Disable colourisation of output
--pretend -p Disable finalisation of changes
See the man page for:
- A complete list of options.
- Detailed explanations and examples for each option.
- General usage information, as well as various tips.
end
end
end
class Datum
def initialize(path)
raise 'File does not exist.' unless File.exist?(path)
Output.file(path)
@path = File.expand_path(path)
case File.extname(path)
when '.flac'
type = FLAC
when '.ogg', '.oga'
type = Vorbis
when '.mp3'
type = MP3
else
raise 'File extension not recognised.'
end
@metadata = type.new(@path)
end
def execute(action)
Output.action(action.to_s)
begin
@metadata.send(action.action, *action.arguments)
rescue MetadataError => e
Output.info(e.message)
end
end
def save!
@metadata.save! if @metadata.modified?
File.rename(@path, @metadata.path) unless @path == @metadata.path
end
end
class Action
attr_reader :action, :arguments
def initialize(action, *arguments)
@action = action
@arguments = arguments
end
def to_s
case @action
when :view
str = 'Viewing all fields'
when :view_tag
str = 'Viewing %s field'
when :add_tag
str = 'Adding %s field'
when :set_tag
str = 'Setting %s field'
when :remove
str = 'Removing all fields'
when :remove_tag
str = 'Removing %s field'
when :generate
str = 'Generating fields'
when :rename
str = 'Renaming file'
end
str % @arguments
end
end
class MetadataError < RuntimeError
def initialize(type)
@type = type
end
def to_s
case @type
when :empty
str = 'No fields set.'
when :generate
str = 'Filename does not match scheme.'
when :invalid
str = 'Invalid field name.'
when :rename
str = 'Insufficient tags.'
when :unset
str = 'Field not set.'
end
return str
end
end
class Array
def longest_element_length
self.inject(0) do |longest, key|
key.length > longest ? key.length : longest
end
end
end
class Hash
def longest_key_length
self.keys.inject(0) do |longest, key|
key.length > longest ? key.length : longest
end
end
end
class Metadata
attr_reader :path
def initialize(file)
@path = File.expand_path(file)
@file = open(file)
@metadata = read
@modified = false
end
def modified?
@modified
end
def view
raise MetadataError, :empty if @metadata.empty?
@metadata.sort.each do |field, value|
value.each do |value|
Output.field(field, value, @metadata.longest_key_length - field.length)
end
end
end
def view_tag(field)
field.upcase!
raise MetadataError, :unset unless @metadata.has_key?(field)
@metadata[field].each do |value|
Output.field(field, value)
end
end
def add_tag(field, value, padding = 0)
field.upcase!
raise MetadataError, :invalid unless valid_field?(field)
if @metadata.has_key?(field)
@metadata[field] << value
else
@metadata[field] = [value]
end
Output.field(field, value, padding)
@modified = true
end
def set_tag(field, value, padding = 0)
field.upcase!
raise MetadataError, :invalid unless valid_field?(field)
@metadata[field] = [value]
Output.field(field, value, padding)
@modified = true
end
def remove
raise MetadataError, :empty if @metadata.empty?
@metadata.clear
Output.info('Removed.')
@modified = true
end
def remove_tag(field)
field.upcase!
raise MetadataError, :unset unless @metadata.has_key?(field)
@metadata.delete(field)
Output.info('Removed.')
@modified = true
end
def generate(scheme)
regexp = Regexp.escape(scheme)
regexp = regexp.gsub(/%([#{keys.keys.join}]|\\\*)/, '([^/]*?)')
regexp = /#{regexp}\Z/
fields = scheme.scan(regexp).flatten
values = @path.chomp(File.extname(@path)).scan(regexp).flatten
raise MetadataError, :generate unless fields.length == values.length
fields.collect! do |field|
keys[field[1,1]]
end
longest = fields.compact.longest_element_length
fields.zip(values).each do |field, value|
unless field.nil?
add_tag(field, value, longest - field.length)
end
end
end
def rename(scheme)
scheme.scan(/%([#{keys.keys.join}])/).flatten.uniq.each do |field|
raise MetadataError, :rename unless @metadata[keys[field]]
scheme = scheme.gsub("%#{field}", @metadata[keys[field]].first)
end
scheme << File.extname(@path)
@path = File.join(File.dirname(@path), scheme)
Output.info(@path)
end
end
class VorbisComment < Metadata
def save!
read.each_key do |field|
metadata.remove_field(field)
end
@metadata.each do |field, value|
value.each do |value|
metadata.add_field(field, value, false)
end
end
@file.save
end
private
def keys
Hash['a' => 'ARTIST',
'b' => 'ALBUM',
'd' => 'DATE',
'n' => 'TRACKNUMBER',
't' => 'TITLE']
end
def read
metadata.field_list_map
end
def valid_field?(field)
valid = (32..125).collect do |character|
character.chr
end
valid.delete('=')
field.scan(/./).each do |character|
return false unless valid.include?(character)
end
return true
end
end
class FLAC < VorbisComment
private
def open(file)
TagLib::FLAC::File.new(file)
end
def metadata
@file.xiph_comment
end
end
class Vorbis < VorbisComment
private
def open(file)
TagLib::Ogg::Vorbis::File.new(file)
end
def metadata
@file.tag
end
end
class MP3 < Metadata
def save!
read.each_key do |field|
metadata.remove_frames(field)
end
@metadata.each do |field, value|
value.each do |value|
frame = TagLib::ID3v2::TextIdentificationFrame.new(field,
TagLib::String::UTF8)
frame.text = value
metadata.add_frame(frame) if metadata.frame_list(field).empty?
end
end
@file.save
end
private
def keys
Hash['a' => 'TPE1',
'b' => 'TALB',
'd' => 'TDRC',
'n' => 'TRCK',
't' => 'TIT2']
end
def open(file)
TagLib::MPEG::File.new(file)
end
def metadata
@file.id3v2_tag
end
def read
metadata.frame_list.inject({}) { |m, e| m[e.frame_id] = [e.to_string]; m }
end
def valid_field?(field)
true
end
end
actions = []
options = {scheme: '%n - %a - %t'}
GetoptLong.new(
['--view', '-v', GetoptLong::NO_ARGUMENT],
['--view-tag', '-t', GetoptLong::REQUIRED_ARGUMENT],
['--add-tag', '-a', GetoptLong::REQUIRED_ARGUMENT],
['--set-tag', '-s', GetoptLong::REQUIRED_ARGUMENT],
['--remove', '-r', GetoptLong::NO_ARGUMENT],
['--remove-tag', '-d', GetoptLong::REQUIRED_ARGUMENT],
['--generate', '-g', GetoptLong::NO_ARGUMENT],
['--rename', '-m', GetoptLong::NO_ARGUMENT],
['--scheme', '-n', GetoptLong::REQUIRED_ARGUMENT],
['--no-colour', '-c', GetoptLong::NO_ARGUMENT],
['--pretend', '-p', GetoptLong::NO_ARGUMENT],
['--help', '-h', GetoptLong::NO_ARGUMENT]
).each do |opt, arg|
opt = opt.sub(/\A--/, '').gsub('-', '_').intern
case opt
when :help
Output.help
exit
when :no_colour, :pretend, :scheme
options[opt] = arg
when :view_tag, :remove_tag
actions << Action.new(opt, arg.dup)
when :add_tag, :set_tag
raise "Argument must contain '='." unless arg.include?('=')
actions << Action.new(opt, *arg.split('=', 2))
when :generate, :rename
actions << Action.new(opt, options[:scheme])
else
actions << Action.new(opt)
end
end
if actions.empty?
$stderr.puts 'No actions specified. See the --help option.'
exit
elsif ARGV.empty?
$stderr.puts 'No files specified.'
exit
end
Output.colour = false if options.has_key?(:no_colour)
ARGV.each do |path|
begin
datum = Datum.new(path)
actions.each do |action|
datum.execute(action)
end
datum.save! unless options[:pretend]
rescue RuntimeError => e
$stderr.puts "#{$0}: #{path}: #{e.message}"
end
end
|