-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathdvda2track
executable file
·418 lines (354 loc) · 15.1 KB
/
dvda2track
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
#!/usr/bin/python
# Audio Tools, a module and set of tools for manipulating audio data
# Copyright (C) 2007-2016 Brian Langenberger
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
import sys
import os
import audiotools
import audiotools.dvda
import audiotools.ui
import audiotools.text as _
import termios
def title_tracks(title):
"""yields a list of Track objects from the title"""
for i in range(1, title.tracks + 1):
yield title.track(i)
def title_to_musicbrainz_id(title):
from audiotools.musicbrainz import DiscID
first_track_number = 1
last_track_number = 0
total_length = 0
offsets = [150]
for track in title_tracks(title):
last_track_number += 1
total_length += track.pts_length
offsets.append(offsets[-1] + (track.pts_length * 75 // 90000))
return DiscID(first_track_number=first_track_number,
last_track_number=last_track_number,
lead_out_offset=150 + (total_length * 75 // 90000),
offsets=offsets[0:-1])
if (__name__ == '__main__'):
import argparse
parser = argparse.ArgumentParser(description=_.DESCRIPTION_DVDA2TRACK)
parser.add_argument("--version",
action="version",
version=audiotools.VERSION_STR)
parser.add_argument("-I", "--interactive",
action="store_true",
default=False,
dest="interactive",
help=_.OPT_INTERACTIVE_OPTIONS)
parser.add_argument("-V", "--verbose",
dest="verbosity",
choices=audiotools.VERBOSITY_LEVELS,
default=audiotools.DEFAULT_VERBOSITY,
help=_.OPT_VERBOSE)
parser.add_argument("-c", "--cdrom",
dest="cdrom",
default=audiotools.DEFAULT_CDROM)
parser.add_argument("-A", "--audio-ts",
default=".",
dest="audio_ts",
metavar="DIR",
help=_.OPT_AUDIO_TS)
parser.add_argument("--title",
default=1,
type=int,
dest="title",
help=_.OPT_DVDA_TITLE)
conversion = parser.add_argument_group(_.OPT_CAT_EXTRACTION)
conversion.add_argument(
"-t", "--type",
dest="type",
choices=sorted(list(t.NAME for t in audiotools.AVAILABLE_TYPES
if t.supports_from_pcm()) + ["help"]),
help=_.OPT_TYPE)
conversion.add_argument("-q", "--quality",
dest="quality",
help=_.OPT_QUALITY)
conversion.add_argument("-d", "--dir",
dest="dir",
default=".",
help=_.OPT_DIR)
conversion.add_argument("--format",
default=None,
dest="format",
help=_.OPT_FORMAT)
lookup = parser.add_argument_group(_.OPT_CAT_DVDA_LOOKUP)
lookup.add_argument("--musicbrainz-server",
dest="musicbrainz_server",
default=audiotools.MUSICBRAINZ_SERVER,
metavar="HOSTNAME")
lookup.add_argument("--musicbrainz-port",
type=int,
dest="musicbrainz_port",
default=audiotools.MUSICBRAINZ_PORT,
metavar="PORT")
lookup.add_argument("--no-musicbrainz",
action="store_false",
dest="use_musicbrainz",
default=audiotools.MUSICBRAINZ_SERVICE,
help=_.OPT_NO_MUSICBRAINZ)
lookup.add_argument("-D", "--default",
dest="use_default",
action="store_true",
default=False,
help=_.OPT_DEFAULT)
metadata = parser.add_argument_group(_.OPT_CAT_METADATA)
metadata.add_argument("--replay-gain",
action="store_true",
default=None,
dest="add_replay_gain",
help=_.OPT_REPLAY_GAIN)
metadata.add_argument("--no-replay-gain",
action="store_false",
default=None,
dest="add_replay_gain",
help=_.OPT_NO_REPLAY_GAIN)
parser.add_argument("tracks",
type=int,
metavar="TRACK",
nargs="*",
help=_.OPT_TRACK_INDEX)
options = parser.parse_args()
msg = audiotools.Messenger(options.verbosity == "quiet")
# ensure interactive mode is available, if selected
if (options.interactive and (not audiotools.ui.AVAILABLE)):
audiotools.ui.not_available_message(msg)
sys.exit(1)
# get the AudioFile class we are converted to
if (options.type == 'help'):
audiotools.ui.show_available_formats(msg)
sys.exit(0)
elif options.type is None:
AudioType = audiotools.TYPE_MAP[audiotools.DEFAULT_TYPE]
else:
AudioType = audiotools.TYPE_MAP[options.type]
# ensure the selected compression is compatible with that class
if (options.quality == 'help'):
audiotools.ui.show_available_qualities(msg, AudioType)
sys.exit(0)
elif (options.quality is None):
options.quality = audiotools.__default_quality__(AudioType.NAME)
elif (options.quality not in AudioType.COMPRESSION_MODES):
msg.error(
_.ERR_UNSUPPORTED_COMPRESSION_MODE.format(
quality=options.quality, type=AudioType.NAME))
sys.exit(1)
quality = options.quality
base_directory = options.dir
# get main DVDA object
try:
dvda = audiotools.dvda.DVDA(options.audio_ts, options.cdrom)
except IOError:
msg.error(_.ERR_DVDA_INVALID_AUDIO_TS)
sys.exit(1)
# get selected DVDATitle from DVDAudio object
try:
title = dvda.titleset(1).title(options.title)
except IndexError:
msg.error(_.ERR_INVALID_TITLE)
sys.exit(1)
# use DVDATtitle object to query metadata services for metadata choices
try:
metadata_choices = audiotools.metadata_lookup(
musicbrainz_disc_id=title_to_musicbrainz_id(title),
musicbrainz_server=options.musicbrainz_server,
musicbrainz_port=options.musicbrainz_port,
use_musicbrainz=options.use_musicbrainz)
except KeyboardInterrupt:
msg.ansi_clearline()
msg.error(_.ERR_CANCELLED)
sys.exit(1)
# determine which tracks to be ripped
if len(options.tracks) == 0:
tracks_to_rip = list(range(1, title.tracks + 1))
else:
tracks_to_rip = [t for t in options.tracks if
t in range(1, title.tracks + 1)]
if len(tracks_to_rip) == 0:
# no tracks selected to rip, so do nothing
sys.exit(0)
# decide which metadata and output options use when extracting tracks
if options.interactive:
# pick choice using interactive widget
output_widget = audiotools.ui.OutputFiller(
track_labels=[_.LAB_TRACK_X_OF_Y.format(i, title.tracks)
for i in tracks_to_rip],
metadata_choices=[[c[i - 1] for i in tracks_to_rip]
for c in metadata_choices],
input_filenames=[
audiotools.Filename(
"track-{:d}-{:02d}.dvda.wav".format(options.title, i))
for i in tracks_to_rip],
output_directory=options.dir,
format_string=(options.format if
(options.format is not None) else
audiotools.FILENAME_FORMAT),
output_class=AudioType,
quality=options.quality,
completion_label=_.LAB_DVDA2TRACK_APPLY)
loop = audiotools.ui.urwid.MainLoop(
output_widget,
audiotools.ui.style(),
screen=audiotools.ui.Screen(),
unhandled_input=output_widget.handle_text,
pop_ups=True)
try:
loop.run()
msg.ansi_clearscreen()
except (termios.error, IOError):
msg.error(_.ERR_TERMIOS_ERROR)
msg.info(_.ERR_TERMIOS_SUGGESTION)
msg.info(audiotools.ui.xargs_suggestion(sys.argv))
sys.exit(1)
if (not output_widget.cancelled()):
output_tracks = list(output_widget.output_tracks())
else:
sys.exit(0)
else:
# pick choice without using GUI
try:
output_tracks = list(
audiotools.ui.process_output_options(
metadata_choices=[[c[i - 1] for i in tracks_to_rip]
for c in metadata_choices],
input_filenames=[
audiotools.Filename(
"track-{:d}-{:02d}.dvda.wav".format(
options.title, i))
for i in tracks_to_rip],
output_directory=options.dir,
format_string=options.format,
output_class=AudioType,
quality=options.quality,
msg=msg,
use_default=options.use_default))
except audiotools.UnsupportedTracknameField as err:
err.error_msg(msg)
sys.exit(1)
except (audiotools.InvalidFilenameFormat,
audiotools.OutputFileIsInput,
audiotools.DuplicateOutputFile) as err:
msg.error(unicode(err))
sys.exit(1)
# perform actual ripping of tracks from DVD-A
encoded = []
sample_rates = set([])
replay_gain = None
for (track_number,
index,
(output_class,
output_filename,
output_quality,
output_metadata)) in zip(tracks_to_rip,
range(1, len(tracks_to_rip) + 1),
output_tracks):
# determine whether we're adding ReplayGain
add_replay_gain = (output_class.supports_replay_gain() and
(options.add_replay_gain if
options.add_replay_gain is not None else
audiotools.ADD_REPLAYGAIN))
# get track from title
try:
track = title.track(track_number)
reader = track.reader()
except IndexError:
continue
except IOError:
msg.error(_.INVALID_TRACK)
sys.exit(1)
# make leading directories, if necessary
try:
audiotools.make_dirs(str(output_filename))
except OSError as err:
msg.os_error(err)
sys.exit(1)
# setup individual progress bar per track
progress = audiotools.SingleProgressDisplay(
msg, output_filename.__unicode__())
# determine approximate length in PCM frames
# (this will *not* be completely accurate in all cases
# so don't use it as a total_pcm_frames argument!)
track_length = track.pts_length * reader.sample_rate // 90000
# encode output file itself
try:
if add_replay_gain:
# try to calculate ReplayGain during extraction
# if all tracks have the same sample rate
sample_rates.add(reader.sample_rate)
# all sample rates are identical so far
if len(sample_rates) == 1:
# setup new calculator if one hasn't been already
if replay_gain is None:
replay_gain = \
audiotools.ReplayGainCalculator(reader.sample_rate)
track_reader = replay_gain.to_pcm(reader)
else:
# sample rate mismatch, so cease calculation
track_reader = reader
else:
# not adding ReplayGain at all
track_reader = reader
track = output_class.from_pcm(
str(output_filename),
audiotools.PCMReaderProgress(
track_reader,
track_length,
progress.update),
output_quality)
encoded.append(track)
except audiotools.EncodingError as err:
progress.clear_rows()
msg.error(_.ERR_ENCODING_ERROR.format(output_filename))
sys.exit(1)
except KeyboardInterrupt:
progress.clear_rows()
try:
os.unlink(str(output_filename))
except OSError:
pass
msg.error(_.ERR_CANCELLED)
sys.exit(1)
track.set_metadata(output_metadata)
progress.clear_rows()
msg.info(
audiotools.output_progress(
_.LAB_ENCODE.format(
source=_.LAB_DVDA_TRACK.format(title_number=options.title,
track_number=track_number),
destination=output_filename),
index, len(tracks_to_rip)))
# add ReplayGain to ripped tracks, if necessary
if (output_class.supports_replay_gain() and
(options.add_replay_gain if options.add_replay_gain is not None else
audiotools.ADD_REPLAYGAIN)):
if len(sample_rates) == 1:
# all sample rates were the same
# so grab calculated gain from inline calculation
for (track, (track_gain, track_peak,
album_gain, album_peak)) in zip(encoded, replay_gain):
track.set_replay_gain(
audiotools.ReplayGain(track_gain=track_gain,
track_peak=track_peak,
album_gain=album_gain,
album_peak=album_peak))
else:
msg.info(_.RG_REPLAYGAIN_ADDED)
else:
# sample rates differed
# so calculate gain on a per-track basis
rg_progress = audiotools.ReplayGainProgressDisplay(msg)
rg_progress.initial_message()
audiotools.add_replay_gain(encoded, progress=rg_progress.update)
rg_progress.final_message()