Merge pull request #19 from ddjanke/patch-1

Update noisyspeech_synthesizer_multiprocessing.py
This commit is contained in:
chandanka90 2020-07-22 21:33:23 -07:00 коммит произвёл GitHub
Родитель ddbb39354b 3784971807
Коммит 70f19285c3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -248,13 +248,13 @@ def main_body():
clean_dir = os.path.join(os.path.dirname(__file__), 'CleanSpeech')
if cfg['speech_dir'] != 'None':
clean_dir = cfg['speech_dir']
if not os.path.exists:
if not os.path.exists(clean_dir):
assert False, ('Clean speech data is required')
noise_dir = os.path.join(os.path.dirname(__file__), 'Noise')
if cfg['noise_dir'] != 'None':
noise_dir = cfg['noise_dir']
if not os.path.exists:
if not os.path.exists(noise_dir):
assert False, ('Noise data is required')
params['fs'] = int(cfg['sampling_rate'])