-
Notifications
You must be signed in to change notification settings - Fork 84
/
import_mailabs.py
executable file
·158 lines (113 loc) · 5.02 KB
/
import_mailabs.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright 2018, 2019 Guenter Bartsch
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 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 Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#
# convert m-ailabs corpora to a voxforge-like directory structure
# so we can import it using our regular tools
#
# WARNING: this is a very crude script, use with care!
#
import argparse
import os
import sys
import codecs
import re
import logging
import json
from optparse import OptionParser
from nltools import misc
PROC_TITLE = 'import_mailabs'
DEFAULT_NUM_CPUS = 12
GENDERS = set(['male', 'female'])
#
# init
#
misc.init_app(PROC_TITLE)
#
# commandline
#
parser = OptionParser("usage: %prog [options]")
parser.add_option ("-n", "--num-cpus", dest="num_cpus", type="int", default=DEFAULT_NUM_CPUS,
help="number of cpus to use in parallel, default: %d" % DEFAULT_NUM_CPUS)
parser.add_option ("-v", "--verbose", action="store_true", dest="verbose",
help="verbose output")
(options, args) = parser.parse_args()
if options.verbose:
logging.basicConfig(level=logging.DEBUG)
else:
logging.basicConfig(level=logging.INFO)
#
# config
#
config = misc.load_config('.speechrc')
speech_arc = config.get("speech", "speech_arc")
speech_corpora = config.get("speech", "speech_corpora")
srcdir = '%s/m_ailabs' % speech_arc
#
# audio, prompts
#
all_utts = set()
cnt = 0
with open('tmp/run_parallel.sh', 'w') as scriptf:
for localedir in os.listdir(srcdir):
if not os.path.isdir('%s/%s' % (srcdir, localedir)):
continue
destdir = '%s/m_ailabs_%s' % (speech_corpora, localedir[:2])
for gender in os.listdir('%s/%s/by_book' % (srcdir, localedir)):
if not gender in GENDERS:
continue
if not os.path.isdir('%s/%s/by_book/%s' % (srcdir, localedir, gender)):
continue
for speaker in os.listdir('%s/%s/by_book/%s' % (srcdir, localedir, gender)):
for book in os.listdir('%s/%s/by_book/%s/%s' % (srcdir, localedir, gender, speaker)):
if not os.path.isdir('%s/%s/by_book/%s/%s/%s' % (srcdir, localedir, gender, speaker, book)):
continue
metafn = '%s/%s/by_book/%s/%s/%s/metadata_mls.json' % (srcdir, localedir, gender, speaker, book)
if not os.path.exists(metafn):
continue
with codecs.open(metafn, 'r', 'utf8') as metaf:
meta = json.loads(metaf.read())
logging.debug('localedir: %s, gender: %6s, speaker: %16s, book: %s' % (localedir, gender, speaker, book))
folder = 'mailabs%s-%s' % (speaker.replace('_','').replace('-',''), book.replace('_','-'))
dstdir = '%s/%s' % (destdir, folder)
misc.mkdirs('%s/wav' % dstdir)
misc.mkdirs('%s/etc' % dstdir)
promptsfn = '%s/etc/prompts-original' % dstdir
logging.debug ('dstdir: %s, promptsfn: %s' % (dstdir, promptsfn))
with codecs.open (promptsfn, 'w', 'utf8') as promptsf:
for wavfn in meta:
ts_orig = meta[wavfn]['clean']
uttid = os.path.splitext(wavfn.replace('_','-'))[0]
if uttid in all_utts:
logging.error('utterance id not unique:' % uttid)
continue
all_utts.add(uttid)
wav_in = '%s/%s/by_book/%s/%s/%s/wavs/%s' % (srcdir, localedir, gender, speaker, book, wavfn)
wav_out = '%s/wav/%s.wav' % (dstdir, uttid)
cmd = 'sox %s -r 16000 -b 16 -c 1 %s gain -n -3 silence -l 0 -1 0.2 0.1%% compand 0.02,0.20 5:-60,-40,-10 -5 -90 0.1 ' % (wav_in, wav_out)
logging.debug(cmd)
# os.system(cmd)
scriptf.write('echo %6d %s &\n' % (cnt, uttid))
scriptf.write('%s &\n' % cmd)
cnt += 1
if (cnt % options.num_cpus) == 0:
scriptf.write('wait\n')
promptsf.write(u'%s %s\n' % (uttid, ts_orig))
cmd = "bash tmp/run_parallel.sh"
print cmd
# os.system(cmd)