-
Notifications
You must be signed in to change notification settings - Fork 39
/
m4b.py
337 lines (263 loc) · 11.7 KB
/
m4b.py
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
#!/usr/bin/env python
import argparse
import ctypes
import datetime
import logging
import os
import re
import shutil
import subprocess
import sys
from textwrap import dedent
class Chapter:
"""MP4 Chapter.
Start, end, and duration times are stored in seconds.
"""
def __init__(self, title=None, start=None, end=None, num=None):
self.title = title
self.start = round(int(start)/1000.0, 3)
self.end = round(int(end)/1000.0, 3)
self.num = num
def duration(self):
if self.start is None or self.end is None:
return None
else:
return round(self.end - self.start, 3)
def __str__(self):
return '<Chapter Title="%s", Start=%s, End=%s, Duration=%s>' % (
self.title,
datetime.timedelta(seconds=self.start),
datetime.timedelta(seconds=self.end),
datetime.timedelta(seconds=self.duration()))
def run_command(log, cmdstr, values, action, ignore_errors=False, **kwargs):
cmd = []
for opt in cmdstr.split(' '):
cmd.append(opt % values)
proc = subprocess.Popen(cmd, **kwargs)
(stdout, output) = proc.communicate()
if not ignore_errors and not proc.returncode == 0:
msg = dedent('''
An error occurred while %s.
Command: %s
Return code: %s
Output: ---->
%s''')
log.error(msg % (action, cmdstr % values, proc.returncode, output))
sys.exit(1)
return output
def parse_args():
"""Parse command line arguments."""
parser = argparse.ArgumentParser(
description='Split m4b audio book by chapters.')
parser.add_argument('-o', '--output-dir', help='directory to store encoded files',
metavar='DIR')
parser.add_argument('--custom-name', default='%(title)s', metavar='"STR"',
help='customize chapter filenames (see README)')
parser.add_argument('--ffmpeg', default='ffmpeg', metavar='BIN',
help='path to ffmpeg binary')
parser.add_argument('--encoder', metavar='BIN',
help='path to encoder binary (default: ffmpeg)')
parser.add_argument('--encode-opts', default='-y -i %(infile)s -acodec libmp3lame -ar %(sample_rate)d -ab %(bit_rate)dk %(outfile)s',
metavar='"STR"', help='custom encoding string (see README)')
parser.add_argument('--ext', default='mp3', help='extension of encoded files')
parser.add_argument('--pipe-wav', action='store_true', help='pipe wav to encoder')
parser.add_argument('--skip-encoding', action='store_true',
help='do not encode audio (keep as .mp4)')
parser.add_argument('--no-mp4v2', action='store_true',
help='use ffmpeg to retrieve chapters (not recommended)')
parser.add_argument('--debug', action='store_true',
help='output debug messages and save to log file')
parser.add_argument('filename', help='m4b file(s) to be converted', nargs='+')
args = parser.parse_args()
cwd = os.path.dirname(__file__)
# Required when dropping m4b files onto m4b.py
if not cwd == '':
os.chdir(cwd)
if args.output_dir is None:
args.output_dir = cwd
if args.encoder is None:
args.encoder = args.ffmpeg
return args
def setup_logging(args, basename):
"""Setup logger. In debug mode debug messages will be saved to a log file."""
log = logging.getLogger(basename)
sh = logging.StreamHandler()
formatter = logging.Formatter("%(levelname)s: %(message)s")
sh.setFormatter(formatter)
if args.debug:
level = logging.DEBUG
filename = '%s.log' % basename
fh = logging.FileHandler(os.path.join(os.path.dirname(__file__), filename), 'w')
fh.setLevel(level)
log.addHandler(fh)
else:
level = logging.INFO
log.setLevel(level)
sh.setLevel(level)
log.addHandler(sh)
log.info('m4bsplit started.')
if args.debug:
s = ['Options:']
for k, v in args.__dict__.items():
s.append(' %s: %s' % (k, v))
log.debug('\n'.join(s))
return log
def ffmpeg_metadata(args, log, filename):
"""Load metadata using the command output from ffmpeg.
Note: Not all chapter types are supported by ffmpeg and there's no Unicode support.
"""
chapters = []
values = dict(ffmpeg=args.ffmpeg, infile=filename)
cmd = '%(ffmpeg)s -i %(infile)s'
log.debug('Retrieving metadata from output of command: %s' % (cmd % values))
output = run_command(log, cmd, values, 'retrieving metadata from ffmpeg output',
ignore_errors=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
raw_metadata = (output.split(" Chapter ")[0]).split('Input #')[1]
raw_chapters = output.split(" Chapter ")[1:]
# Parse stream and metadata
re_stream = re.compile(r'[\s]+Stream .*: Audio: .*, ([\d]+) Hz, .*, .*, ([\d]+) kb\/s')
re_duration = re.compile(r'[\s]+Duration: (.*), start: (.*), bitrate: ([\d]+) kb\/s')
try:
stream = re_stream.search(output)
sample_rate, bit_rate = int(stream.group(1)), int(stream.group(2))
except Exception:
sample_rate, bit_rate = 44100, 64
metadata = {}
for meta in raw_metadata.split('\n')[2:]:
if meta.startswith(' Duration: '):
m = re_duration.match(meta)
if m:
metadata['duration'] = m.group(1).strip()
metadata['start'] = m.group(2).strip()
else:
key = (meta.split(':')[0]).strip()
value = (':'.join(meta.split(':')[1:])).strip()
metadata[key] = value
# Parse chapters
re_chapter = re.compile('^#[\d\.]+: start ([\d|\.]+), end ([\d|\.]+)[\s]+Metadata:[\s]+title[\s]+: (.*)')
n = 1
for raw_chapter in raw_chapters:
m = re.match(re_chapter, raw_chapter.strip())
start = float(m.group(1)) * 1000
e = float(m.group(2)) * 1000
duration = e - start
title = unicode(m.group(3), errors='ignore').strip()
chapter = Chapter(num=n, title=title, start=start, end=e)
chapters.append(chapter)
n += 1
return chapters, sample_rate, bit_rate, metadata
def mp4v2_metadata(filename):
"""Load metadata with libmp4v2. Supports both chapter types and Unicode."""
from libmp4v2 import MP4File
mp4 = MP4File(filename)
mp4.load_meta()
chapters = mp4.chapters
sample_rate = mp4.sample_rate
bit_rate = mp4.bit_rate
metadata = {}
mp4.close()
return chapters, sample_rate, bit_rate, metadata
def load_metadata(args, log, filename):
if args.no_mp4v2:
log.info('Loading metadata using ffmpeg...')
return ffmpeg_metadata(args, log, filename)
else:
log.info('Loading metadata using libmp4v2...')
return mp4v2_metadata(filename)
def show_metadata_info(args, log, chapters, sample_rate, bit_rate, metadata):
"""Show a summary of the parsed metadata."""
log.info(dedent('''
Metadata:
Chapters: %d
Bit rate: %d kbit/s
Sampling freq: %d Hz''' % (len(chapters), bit_rate, sample_rate)))
if args.debug and chapters:
log.debug(dedent('''
Chapter data:
%s''' % '\n'.join([' %s' % c for c in chapters])))
if args.no_mp4v2 and not chapters:
log.warning("No chapters were found. There may be chapters present but ffmpeg can't read them. Try to enable mp4v2.")
log.info('Do you want to continue? (y/N)')
cont = raw_input('> ')
if not cont.lower().startswith('y'):
sys.exit(1)
def encode(args, log, output_dir, temp_dir, filename, basename, sample_rate, bit_rate, metadata):
"""Encode audio."""
# Create output and temp directory
if not os.path.isdir(output_dir):
os.makedirs(output_dir)
if not os.path.isdir(temp_dir):
os.makedirs(temp_dir)
if args.skip_encoding:
encoded_file = filename
args.ext = 'mp4'
return encoded_file
else:
fname = '%s.%s' % (basename, args.ext)
encoded_file = os.path.join(temp_dir, fname)
cmd_values = dict(ffmpeg=args.ffmpeg, encoder=args.encoder, infile=filename,
sample_rate=sample_rate, bit_rate=bit_rate, outfile=encoded_file)
if os.path.isfile(encoded_file):
log.info("Found a previously encoded file '%s'. Do you want to re-encode it? (y/N/q)" % encoded_file)
i = raw_input('> ')
if i.lower().startswith('q'):
sys.exit(0)
elif not i.lower() == 'y':
return encoded_file
# Build encoding options
if not '%(outfile)s' in args.encode_opts:
log.error('%(outfile)s needs to be present in the encoding options. See the README.')
sys.exit(1)
encode_cmd = '%%(encoder)s %s' % args.encode_opts
if args.pipe_wav:
encode_cmd = '%(ffmpeg)s -i %(infile)s -f wav pipe:1 | ' + encode_cmd
log.info('Encoding audio...')
log.debug('Encoding with command: %s' % (encode_cmd % cmd_values))
run_command(log, encode_cmd, cmd_values, 'encoding audio', shell=args.pipe_wav)
return encoded_file
def split(args, log, output_dir, encoded_file, chapters):
"""Split encoded audio file into chapters.
Note: ffmpeg on Windows can't take filenames with Unicode characters so we
write the split file to a non-unicode temp file then rename it. This is not
necessary on other platforms.
"""
re_format = re.compile(r'%\(([A-Za-z0-9]+)\)')
re_sub = re.compile(r'[\\\*\?\"\<\>\|]+')
for chapter in chapters:
values = dict(num=chapter.num, title=chapter.title, start=chapter.start, end=chapter.end, duration=chapter.duration())
chapter_name = re_sub.sub('', (args.custom_name % values).replace('/', '-').replace(':', '-'))
if not isinstance(chapter_name, unicode):
chapter_name = unicode(chapter_name, 'utf-8')
if sys.platform.startswith('win'):
fname = os.path.join(output_dir, '_tmp_%d.%s' % (chapter.num, args.ext))
else:
fname = os.path.join(output_dir, '%s.%s' % (chapter_name, args.ext))
values = dict(ffmpeg=args.ffmpeg, duration=str(chapter.duration()),
start=str(chapter.start), outfile=encoded_file, infile=fname)
split_cmd = '%(ffmpeg)s -y -acodec copy -t %(duration)s -ss %(start)s -i %(outfile)s %(infile)s'
log.info("Splitting chapter %2d/%2d '%s'..." % (chapter.num, len(chapters), chapter_name))
log.debug('Splitting with command: %s' % (split_cmd % values))
run_command(log, split_cmd, values, 'splitting audio file', stdout=subprocess.PIPE, stderr=subprocess.PIPE)
# Rename file
if sys.platform.startswith('win'):
new_filename = os.path.join(output_dir, '%s.%s' % (chapter_name, args.ext))
log.debug('Renaming "%s" to "%s".\n' % (fname, new_filename))
shutil.move(fname, new_filename)
def main():
args = parse_args()
for filename in args.filename:
basename = os.path.splitext(os.path.basename(filename))[0]
output_dir = os.path.join(args.output_dir, basename)
if args.skip_encoding:
temp_dir = output_dir
else:
temp_dir = os.path.join(output_dir, 'temp')
log = setup_logging(args, basename)
log.info("Initiating script for file '%s'." % filename)
chapters, sample_rate, bit_rate, metadata = load_metadata(args, log, filename)
show_metadata_info(args, log, chapters, sample_rate, bit_rate, metadata)
encoded_file = encode(args, log, output_dir, temp_dir, filename,
basename, sample_rate, bit_rate, metadata)
split(args, log, output_dir, encoded_file, chapters)
if __name__ == '__main__':
main()