-
Notifications
You must be signed in to change notification settings - Fork 84
/
speech_gender.py
executable file
·164 lines (114 loc) · 3.01 KB
/
speech_gender.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright 2016, 2017, 2018 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/>.
#
#
# interactive spk2gender editor
#
import os
import sys
import logging
import traceback
import locale
from optparse import OptionParser
from nltools import misc
from nltools.tts import TTS
from speech_transcripts import Transcripts
def play_wav(cfn):
global wav16_dir, tts, corpus
wavfn = '%s/%s/%s.wav' % (wav16_dir, corpus, cfn)
with open(wavfn) as wavf:
wav = wavf.read()
tts.play_wav(wav, async=True)
#
# init
#
misc.init_app ('speech_gender')
config = misc.load_config ('.speechrc')
# logging.basicConfig(level=logging.DEBUG)
logging.basicConfig(level=logging.INFO)
#
# commandline
#
parser = OptionParser("usage: %prog [options] corpus")
(options, args) = parser.parse_args()
if len(args) != 1:
parser.print_usage()
sys.exit(1)
corpus = args[0]
SPK2GENDERFN = 'data/src/speech/%s/spk2gender' % corpus
#
# load spk2gender
#
spk2gender = {}
print "loading %s..." % SPK2GENDERFN
with open(SPK2GENDERFN, 'r') as f:
for line in f:
parts = line.strip().split(' ')
spk2gender[parts[0].strip()] = parts[1].strip()
print "loading %s ...done." % SPK2GENDERFN
#
# load transcripts
#
print "loading transcripts..."
transcripts = Transcripts(corpus_name=corpus)
print "loading transcripts...done."
#
# config
#
wav16_dir = config.get("speech", "wav16")
host = config.get('tts', 'host')
port = int(config.get('tts', 'port'))
#
# TTS
#
tts = TTS (host, port, locale='de', voice='bits3')
#
# count
#
known = set()
for spk in spk2gender:
known.add(spk)
num_unk = 0
for cfn in transcripts:
ts = transcripts[cfn]
spk = ts['spk']
if spk in known:
continue
num_unk += 1
print '%5d %s' % (num_unk, spk)
known.add(spk)
#
# main
#
cnt = 0
for cfn in transcripts:
ts = transcripts[cfn]
if ts['spk'] in spk2gender:
continue
cnt += 1
wavfn = '%s/%s.wav' % (wav16_dir, cfn)
print '%5d/%5d' % (cnt, num_unk), ts['spk'], wavfn
play_wav(cfn)
reply = raw_input('m/f/q >')
if reply == 'q' or reply=='Q':
break
spk2gender[ts['spk']] = reply
with open(SPK2GENDERFN, 'w') as f:
for spk in sorted(spk2gender):
f.write('%s %s\n' % (spk, spk2gender[spk]))
print "%s written." % SPK2GENDERFN