-
Notifications
You must be signed in to change notification settings - Fork 2
/
simple_enunu.py
executable file
·734 lines (653 loc) · 29.1 KB
/
simple_enunu.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
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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
#! /usr/bin/env python3
# coding: utf-8
# Copyright (c) 2023-2024 oatsu
"""
1. UTAUプラグインのテキストファイルを読み取る。
2. LABファイル→WAVファイル
"""
import logging
import shutil
import sys
import time
import tkinter
import warnings
from datetime import datetime
from glob import glob
from os import chdir, listdir, makedirs, rename, startfile
from os.path import (abspath, basename, dirname, exists, expanduser, join,
relpath, splitext)
from shutil import move
from tempfile import TemporaryDirectory, mkdtemp
from tkinter.filedialog import asksaveasfilename
from typing import Iterable, List, Union
import colored_traceback.always # pylint: disable=unused-import
import numpy as np
import utaupy
import yaml
from nnmnkwii.io import hts
from scipy.io import wavfile
# scikit-learn で警告が出るのを無視
warnings.simplefilter('ignore')
# my_package.my_moduleのみに絞ってsys.stderrにlogを出す
logging.basicConfig(stream=sys.stdout,
format="%(asctime)s [%(levelname)s] %(message)s",
level=logging.INFO)
logging.getLogger('simple_enunu')
# pylint: disable=C0411
# pylint: disable=C0413
# autopep8: off
# ------------------------------------------------
# ENUNUのフォルダ直下にあるフォルダやファイルをimportできるようにする
sys.path.append(dirname(__file__))
import enulib
try:
import torch
except ModuleNotFoundError:
print('----------------------------------------------------------')
print('初回起動ですね。')
print('PC環境に合わせてPyTorchを自動インストールします。')
print('インストール完了までしばらくお待ちください。')
print('----------------------------------------------------------')
enulib.install_torch.ltt_install_torch(sys.executable)
# enulib.install_torch.pip_install_torch(abspath(sys.executable))
print('----------------------------------------------------------')
print('インストール成功しました。')
print('----------------------------------------------------------\n')
import torch
# NNSVSをimportできるようにする
if exists(join(dirname(__file__), 'nnsvs-master')):
sys.path.append(join(dirname(__file__), 'nnsvs-master'))
elif exists(join(dirname(__file__), 'nnsvs')):
sys.path.append(join(dirname(__file__), 'nnsvs'))
else:
logging.error('NNSVS directory is not found.')
import nnsvs # pylint: disable=import-error
from nnsvs.svs import SPSVS
from utils import enunu2nnsvs # pylint: disable=import-error
logging.debug('Imported NNSVS module: %s', nnsvs)
# ------------------------------------------------
# pylint: enable=C0411
# pylint: enable=C0413
# autopep8: on
def get_project_path(path_utauplugin):
"""
キャッシュパスとプロジェクトパスを取得する。
"""
plugin = utaupy.utauplugin.load(path_utauplugin)
setting = plugin.setting
# ustのパス
path_ust = setting.get('Project')
# 音源フォルダ
voice_dir = setting['VoiceDir']
# 音声キャッシュのフォルダ(LABとJSONを設置する)
cache_dir = setting['CacheDir']
return path_ust, voice_dir, cache_dir
def estimate_bit_depth(wav: np.ndarray) -> str:
"""
wavformのビット深度を判定する。
16bitか32bit
16bitの最大値: 32767
32bitの最大値: 2147483647
"""
# 音量の最大値を取得
max_gain = np.nanmax(np.abs(wav))
# 学習データのビット深度を推定(8388608=2^24)
if max_gain > 8388608:
return 'int32'
if max_gain > 8:
return 'int16'
return 'float'
def wrapped_enunu2nnsvs(voice_dir, out_dir):
"""ENUNU用のディレクトリ構造のモデルをNNSVS用に再構築する。
"""
# torch.save() の出力パスに日本語が含まれているとセーブできないので、一時フォルダを作ってそこに保存してから移動する。
with TemporaryDirectory(prefix='.temp-enunu2nnsvs-', dir='.') as temp_dir:
enunu2nnsvs.main(voice_dir, relpath(temp_dir))
for path in listdir(temp_dir):
move(join(temp_dir, path), join(out_dir, path))
with open(join(voice_dir, 'enuconfig.yaml'), encoding='utf-8') as f:
enuconfig = yaml.safe_load(f)
rename(
join(out_dir, 'kana2phonemes.table'),
join(out_dir, basename(enuconfig['table_path'])))
def packed_model_exists(voice_dir: str) -> bool:
"""フォルダ内にNNSVSモデルがあるかどうかを返す
Args:
dir (str): Path of the directory
"""
# SPSVSクラスを使う際に必要なNNSVSモデル用のファイル(の一部)
required_files = {'config.yaml', 'qst.hed'}
# 全ての要求ファイルがフォルダ内に存在するか調べて返す
return all(map(exists, [join(voice_dir, p) for p in required_files]))
def find_table(model_dir: str) -> str:
""" 歌詞→音素の変換テーブルを探す
"""
table_files = glob(join(model_dir, '*.table'))
if len(table_files) == 0:
raise FileNotFoundError(f'Table file does not exist in {model_dir}.')
elif len(table_files) > 1:
logging.warning('Multiple table files are found. : %s', table_files)
logging.info('Using %s', basename(table_files[0]))
return table_files[0]
def adjust_wav_gain_for_float32(wav: np.ndarray):
"""
wavformのビット深度を判定して、float32で適切な音量で出力する。
16bitか32bit
16bitの最大値: 32767
32bitの最大値: 2147483647
ビット深度を指定してファイル出力(32bit float)
"""
# 音量の最大値を取得
max_gain = np.nanmax(np.abs(wav))
# 学習データのビット深度を推定(8388608=2^24)
# int32 -> float
if max_gain > 8388608:
return wav / 2147483647
# int16 -> float
elif max_gain > 8:
return wav / 32767
# float
else:
return wav
class ENUNU(SPSVS):
"""ENUNU で合成するするときのクラス。
Args:
model_dir (str): NNSVSのモデルがあるフォルダ
device (str): 'cuda' or 'cpu'
"""
def __init__(self,
model_dir: str,
device='cuda' if torch.cuda.is_available() else 'cpu',
verbose=0,
**kwargs):
super().__init__(model_dir, device=device, verbose=verbose, **kwargs)
# self.voice_dir = None
# self.path_plugin = None
self.path_ust = None
self.path_table = None
self.path_full_score = None
self.path_mono_score = None
self.path_full_timing = None
self.path_mono_timing = None
self.path_mgc = None
self.path_f0 = None
self.path_vuv = None
self.path_bap = None
self.path_feedback = None
# self.path_wav = None
def set_paths(self, temp_dir, songname, path_feedback=None):
"""ファイル入出力のPATHを設定する
"""
self.path_ust = join(temp_dir, f'{songname}_temp.ust')
self.path_table = join(temp_dir, f'{songname}_temp.table')
self.path_full_score = join(temp_dir, f'{songname}_score.full')
self.path_mono_score = join(temp_dir, f'{songname}_score.lab')
self.path_full_timing = join(temp_dir, f'{songname}_timing.full')
self.path_mono_timing = join(temp_dir, f'{songname}_timing.lab')
self.path_mgc = join(temp_dir, f'{songname}_acoustic_mgc.csv')
self.path_f0 = join(temp_dir, f'{songname}_acoustic_f0.csv')
self.path_vuv = join(temp_dir, f'{songname}_acoustic_vuv.csv')
self.path_bap = join(temp_dir, f'{songname}_acoustic_bap.csv')
if path_feedback is not None:
self.path_feedback = path_feedback
def get_extension_path_list(self, key) -> List[str]:
"""
拡張機能のパスのリストを取得する。
パスが複数指定されていてもひとつしか指定されていなくてもループできるように、リストを返す。
"""
config = self.config
# 拡張機能の項目がなければNoneを返す。
if 'extensions' not in config:
return []
# 目的の拡張機能のパスがあれば取得する。
extension_list = config.extensions.get(key)
if extension_list is None:
return []
if extension_list == "":
return []
if isinstance(extension_list, str):
return [extension_list]
if isinstance(extension_list, Iterable):
return list(extension_list)
# 空文字列でもNULLでもリストでも文字列でもない場合
raise TypeError(
'Extension path must be null or strings or list, '
f'not {type(extension_list)} for {extension_list}'
)
def edit_ust(self, ust: utaupy.ust.Ust, key='ust_editor') -> utaupy.ust.Ust:
"""
合成前に、外部ツールでUSTを編集する。
複数ツール
"""
# UST加工ツールのパスを取得
extension_list = self.get_extension_path_list(key)
# UST加工ツールが指定されていない時はSkip
if len(extension_list) == 0:
return ust
# 念のためustファイルを最新データで上書きする
ust.write(self.path_ust)
# 外部ツールで ust を編集
for path_extension in extension_list:
self.logger.info('Editing UST with %s', path_extension)
enulib.extensions.run_extension(
path_extension,
ust=self.path_ust,
table=self.path_table,
feedback=self.path_feedback
)
# 編集後のustファイルを読み取る
ust = utaupy.ust.load(self.path_ust)
return ust
def edit_score(self, score_labels, key='score_editor'):
"""
USTから変換して生成したフルラベルを外部ツールで編集する。
"""
# LAB加工ツールのパスを取得
extension_list = self.get_extension_path_list(key)
# LAB加工ツールが指定されていない時はSkip
if len(extension_list) == 0:
return score_labels
# 外部ツールでラベルを編集
for path_extension in extension_list:
self.logger.info('Editing LAB (score) with %s', path_extension)
enulib.extensions.run_extension(
path_extension,
ust=self.path_ust,
table=self.path_table,
feedback=self.path_feedback,
full_score=self.path_full_score
)
score_labels = hts.load(self.path_full_score).round_()
return score_labels
def edit_timing(self, duration_modified_labels, key='timing_editor'):
"""
外部ツールでタイミング編集する
"""
# タイミング加工ツールのパスを取得
extension_list = self.get_extension_path_list(key)
# 指定されていない場合はSkip
if len(extension_list) == 0:
return duration_modified_labels
# 複数ツールのすべてについて処理実施する
for path_extension in extension_list:
print(f'Editing timing with {path_extension}')
# 変更前のモノラベルを読んでおく
with open(self.path_mono_timing, encoding='utf-8') as f:
str_mono_old = f.read()
enulib.extensions.run_extension(
path_extension,
ust=self.path_ust,
table=self.path_table,
feedback=self.path_feedback,
full_score=self.path_full_score,
mono_score=self.path_mono_score,
full_timing=self.path_full_timing,
mono_timing=self.path_mono_timing
)
# 変更後のモノラベルを読む
with open(self.path_mono_timing, encoding='utf-8') as f:
str_mono_new = f.read()
# モノラベルの時刻が変わっていたらフルラベルに転写して、
# そうでなければフルラベルの時刻をモノラベルに転写する。
# NOTE: 歌詞は編集していないという前提で処理する。
if enulib.extensions.str_has_been_changed(str_mono_old, str_mono_new):
enulib.extensions.merge_mono_time_change_to_full(
self.path_mono_timing, self.path_full_timing)
else:
enulib.extensions.merge_full_time_change_to_mono(
self.path_full_timing, self.path_mono_timing)
# 編集後のfull_timing を読み取る
duration_modified_labels = hts.load(self.path_full_timing).round_()
return duration_modified_labels
def edit_acoustic(self, multistream_features, feature_type, key='acoustic_editor'):
"""
外部ツールでピッチなどを編集する。
"""
# acoustic加工ツールのパスを取得
extension_list = self.get_extension_path_list(key)
# ツールが指定されていない場合はSkip
if len(extension_list) == 0:
return multistream_features
# 想定外のボコーダが指定された場合もSkip
if feature_type not in ['world', 'melf0']:
self.logger.warning(
'Unknown feature_type "%s" is selected. Skipping acoustic editor.',
feature_type)
return multistream_features
# ツールが指定されている場合はCSV書き出し
if feature_type == 'world':
assert len(multistream_features) == 4
mgc, lf0, vuv, bap = multistream_features
f0 = np.exp(lf0)
np.savetxt(self.path_mgc, mgc, fmt="%.16f", delimiter=",")
np.savetxt(self.path_f0, f0, fmt="%.16f", delimiter=",")
np.savetxt(self.path_vuv, vuv, fmt="%.16f", delimiter=",")
np.savetxt(self.path_bap, bap, fmt="%.16f", delimiter=",")
elif feature_type == 'melf0':
assert len(multistream_features) == 3
mgc, lf0, vuv = multistream_features
f0 = np.exp(lf0)
# CSV書き出し
np.savetxt(self.path_mgc, mgc, fmt="%.16f", delimiter=",")
np.savetxt(self.path_f0, f0, fmt="%.16f", delimiter=",")
np.savetxt(self.path_vuv, vuv, fmt="%.16f", delimiter=",")
# 複数ツールのすべてについて処理実施する
for path_extension in extension_list:
print(f'Editing acoustic features with {path_extension}')
enulib.extensions.run_extension(
path_extension,
ust=self.path_ust,
table=self.path_table,
feedback=self.path_feedback,
full_score=self.path_full_score,
mono_score=self.path_mono_score,
full_timing=self.path_full_timing,
mono_timing=self.path_mono_timing,
mgc=self.path_mgc,
f0=self.path_f0,
vuv=self.path_vuv,
bap=self.path_bap
)
# 編集が終わったらCSV読み取り
if feature_type == 'world':
mgc = np.loadtxt(self.path_mgc, delimiter=',', dtype=np.float64)
lf0 = np.log(np.loadtxt(self.path_f0, delimiter=',', dtype=np.float64)
).reshape(-1, 1)
vuv = np.loadtxt(self.path_vuv, delimiter=',',
dtype=np.float64).reshape(-1, 1)
bap = np.loadtxt(self.path_bap, delimiter=',', dtype=np.float64)
# 統合
multistream_features = (mgc, lf0, vuv, bap)
elif feature_type == 'melf0':
# 編集が終わったらCSV読み取り
mgc = np.loadtxt(self.path_mgc, delimiter=',', dtype=np.float64)
lf0 = np.log(np.loadtxt(self.path_f0, delimiter=',', dtype=np.float64)
).reshape(-1, 1)
vuv = np.loadtxt(self.path_vuv, delimiter=',', dtype=np.float64
).reshape(-1, 1)
# 統合
multistream_features = (mgc, lf0, vuv)
else:
raise Exception('Unexpected Error')
return multistream_features
def svs(
self,
labels,
vocoder_type='world',
post_filter_type='gv',
trajectory_smoothing=True,
trajectory_smoothing_cutoff=50,
trajectory_smoothing_cutoff_f0=20,
vuv_threshold=0.5,
style_shift=0,
force_fix_vuv=False,
fill_silence_to_rest=False,
dtype=np.int16,
peak_norm=False,
loudness_norm=False,
target_loudness=-20,
segmented_synthesis=False,
**kwargs
):
"""Synthesize waveform from HTS labels.
Args:
labels (nnmnkwii.io.hts.HTSLabelFile): HTS labels
vocoder_type (str): Vocoder type. One of ``world``, ``pwg`` or ``usfgan``.
If ``auto`` is specified, the vocoder is automatically selected.
post_filter_type (str): Post-filter type. ``merlin``, ``gv`` or ``nnsvs``
is supported.
trajectory_smoothing (bool): Whether to smooth acoustic feature trajectory.
trajectory_smoothing_cutoff (int): Cutoff frequency for trajectory smoothing.
trajectory_smoothing_cutoff_f0 (int): Cutoff frequency for trajectory
smoothing of f0.
vuv_threshold (float): Threshold for VUV.
style_shift (int): style shift parameter
force_fix_vuv (bool): Whether to correct VUV.
fill_silence_to_rest (bool): Fill silence to rest frames.
dtype (np.dtype): Data type of the output waveform.
peak_norm (bool): Whether to normalize the waveform by peak value.
loudness_norm (bool): Whether to normalize the waveform by loudness.
target_loudness (float): Target loudness in dB.
segmneted_synthesis (bool): Whether to use segmented synthesis.
"""
start_time = time.time()
vocoder_type = vocoder_type.lower()
if vocoder_type not in ["world", "pwg", "usfgan", "auto"]:
raise ValueError(f"Unknown vocoder type: {vocoder_type}")
if post_filter_type not in ["merlin", "nnsvs", "gv", "none"]:
raise ValueError(f"Unknown post-filter type: {post_filter_type}")
# Predict timinigs
duration_modified_labels = self.predict_timing(labels)
# NOTE: ここにタイミング補正のための割り込み処理を追加-----------
# mono_score を出力
with open(self.path_mono_score, 'w', encoding='utf-8') as f:
f.write(str(nnsvs.io.hts.full_to_mono(labels)))
# mono_timing を出力
with open(self.path_mono_timing, 'w', encoding='utf-8') as f:
f.write(str(nnsvs.io.hts.full_to_mono(duration_modified_labels)))
# full_timing を出力
with open(self.path_full_timing, 'w', encoding='utf-8') as f:
f.write(str(duration_modified_labels))
# 外部で加工した結果でタイミング情報を置換
duration_modified_labels = self.edit_timing(duration_modified_labels)
# ---------------------------------------------------------------
# NOTE: segmented synthesis is not well tested. There MUST be better ways
# to do this.
if segmented_synthesis:
self.logger.warning(
"Segmented synthesis is not well tested. Use it on your own risk."
)
# NOTE: ここsegment_labels が nnsvs の中の関数にあるので呼び出せるように改造済み
duration_modified_labels_segs = nnsvs.io.hts.segment_labels(
duration_modified_labels,
# the following parameters are based on experiments in the NNSVS's paper
# tuned with Namine Ritsu's database
silence_threshold=0.1,
min_duration=5.0,
force_split_threshold=5.0,
)
from tqdm.auto import tqdm # pylint: disable=C0415
else:
duration_modified_labels_segs = [duration_modified_labels]
def tqdm(x, **kwargs):
return x
# Run acoustic model and vocoder
hts_frame_shift = int(self.config.frame_period * 1e4)
wavs = []
self.logger.info("Number of segments: %s",
len(duration_modified_labels_segs))
for duration_modified_labels_seg in tqdm(
duration_modified_labels_segs,
desc="[segment]",
total=len(duration_modified_labels_segs),
):
duration_modified_labels_seg.frame_shift = hts_frame_shift
# Predict acoustic features
# NOTE: if non-zero pre_f0_shift_in_cent is specified, the input pitch
# will be shifted before running the acoustic model
acoustic_features = self.predict_acoustic(
duration_modified_labels_seg,
f0_shift_in_cent=style_shift * 100,
)
# Post-processing for acoustic features
# NOTE: if non-zero post_f0_shift_in_cent is specified, the output pitch
# will be shifted as a part of post-processing
multistream_features = self.postprocess_acoustic(
acoustic_features=acoustic_features,
duration_modified_labels=duration_modified_labels_seg,
trajectory_smoothing=trajectory_smoothing,
trajectory_smoothing_cutoff=trajectory_smoothing_cutoff,
trajectory_smoothing_cutoff_f0=trajectory_smoothing_cutoff_f0,
force_fix_vuv=force_fix_vuv,
fill_silence_to_rest=fill_silence_to_rest,
f0_shift_in_cent=-style_shift * 100,
)
# NOTE: ここにピッチ補正のための割り込み処理を追加-----------
multistream_features = self.edit_acoustic(
multistream_features,
feature_type=self.feature_type
)
# Generate waveform by vocoder
wav = self.predict_waveform(
multistream_features=multistream_features,
vocoder_type=vocoder_type,
vuv_threshold=vuv_threshold,
)
wavs.append(wav)
# Concatenate segmented waveforms
wav = np.concatenate(wavs, axis=0).reshape(-1)
# Post-processing for the output waveform
wav = self.postprocess_waveform(
wav,
dtype=dtype,
peak_norm=peak_norm,
loudness_norm=loudness_norm,
target_loudness=target_loudness,
)
# pylint: disable=W1203
self.logger.info(f"Total time: {time.time() - start_time:.3f} sec")
RT = (time.time() - start_time) / (len(wav) / self.sample_rate)
self.logger.info(f"Total real-time factor: {RT:.3f}")
# pylint: enable=W1203
return wav, self.sample_rate
def main(path_plugin: str, path_wav: Union[str, None] = None, play_wav=True) -> str:
"""
UTAUプラグインのファイルから音声を生成する
"""
# USTの形式のファイルでなければエラー
if not (path_plugin.endswith('.tmp') or path_plugin.endswith('.ust')):
raise ValueError('Input file must be UST or TMP(plugin).')
# UTAUの一時ファイルに書いてある設定を読み取る
logging.info('reading settings in TMP')
path_ust, voice_dir, _ = get_project_path(path_plugin)
# 日付時刻を取得
str_now = datetime.now().strftime('%Y%m%d_%H%M%S')
# wav出力パスが指定されていない(プラグインとして実行している)場合
if path_wav is None:
# tkinterの親Windowを表示させないようにする
root = tkinter.Tk()
root.withdraw()
# 入出力パスを設定する
if path_ust is not None:
songname = splitext(basename(path_ust))[0]
out_dir = dirname(path_ust)
temp_dir = join(out_dir, f'{songname}_enutemp')
# WAV出力パス指定なしかつUST未保存の場合
else:
logging.info('USTが保存されていないのでデスクトップにWAV出力します。')
songname = f'temp__{str_now}'
out_dir = mkdtemp(prefix='enunu-')
temp_dir = join(out_dir, f'{songname}_enutemp')
# WAV出力パスが指定されている場合
else:
songname = splitext(basename(path_wav))[0]
out_dir = dirname(path_wav)
temp_dir = join(out_dir, f'{songname}_enutemp')
path_wav = abspath(path_wav)
# ENUNU=>1.0.0 または SimpleEnunu 用に作成されたNNSVSモデルの場合
if packed_model_exists(join(voice_dir, 'model')):
model_dir = join(voice_dir, 'model')
# ENUNU 用ではない通常のNNSVSモデルの場合
elif packed_model_exists(voice_dir):
model_dir = voice_dir
logging.warning(
'NNSVS model is selected. This model might be not ready for ENUNU.')
# ENUNU<1.0.0 向けの構成のモデルな場合
elif exists(join(voice_dir, 'enuconfig.yaml')):
logging.info(
'Regacy ENUNU model is selected. Converting it for the compatibility...'
)
model_dir = join(voice_dir, 'model')
makedirs(model_dir, exist_ok=True)
print('----------------------------------------------')
wrapped_enunu2nnsvs(voice_dir, model_dir)
print('\n----------------------------------------------')
logging.info('Converted.')
# configファイルがあるか調べて、なければ例外処理
else:
raise Exception('UTAU音源選択でENUNU用モデルを指定してください。')
assert model_dir
# カレントディレクトリを音源フォルダに変更する
chdir(voice_dir)
# 一時フォルダを作成する
makedirs(temp_dir, exist_ok=True)
# モデルを読み取る
logging.info('Loading models')
engine = ENUNU(
model_dir,
device='cuda' if torch.cuda.is_available() else 'cpu')
engine.set_paths(temp_dir=temp_dir, songname=songname,
path_feedback=path_plugin)
# NOTE: 後方互換のため
# enuconfigが存在する場合、そこに記載されている拡張機能のパスをconfigに追加する
if exists(join(voice_dir, 'enuconfig.yaml')):
with open(join(voice_dir, 'enuconfig.yaml'), encoding='utf-8') as f:
enuconfig = yaml.safe_load(f)
engine.config['extensions'] = enuconfig.get('extensions')
del enuconfig
# USTを一時フォルダに複製
print(f'{datetime.now()} : copying UST')
shutil.copy2(path_plugin, engine.path_ust)
# Tableファイルを一時フォルダに複製
print(f'{datetime.now()} : copying Table')
shutil.copy2(find_table(model_dir), engine.path_table)
# USTファイルを編集する
ust = utaupy.ust.load(engine.path_ust)
ust = engine.edit_ust(ust)
ust.write(engine.path_ust)
# UST → LAB の変換をする
logging.info('Converting UST -> LAB')
enulib.utauplugin2score.utauplugin2score(
engine.path_ust,
engine.path_table,
engine.path_full_score,
strict_sinsy_style=False
)
# フルラベルファイルを読み取る
logging.info('Loading LAB')
labels = hts.load(engine.path_full_score)
# LABファイルを編集する。
labels = engine.edit_score(labels)
# 音声を生成する
# NOTE: engine.svs を分解してタイミング補正を行えるように改造中。
logging.info('Generating WAV')
wav_data, sample_rate = engine.svs(
labels,
dtype=np.float32,
vocoder_type='auto',
post_filter_type='gv',
force_fix_vuv=True,
segmented_synthesis=True
)
# wav出力のフォーマットを確認する
wav_data = adjust_wav_gain_for_float32(wav_data)
# WAV出力先が未定の場合
if path_wav is None:
print('表示されているエクスプローラーの画面から、WAVファイルに名前を付けて保存してください。')
if out_dir is not None:
initialdir = out_dir
else:
initialdir = expanduser(join('~', 'Desktop'))
# wavファイルの保存先を指定
path_wav = asksaveasfilename(
initialdir=initialdir,
initialfile=f'{songname}.wav',
filetypes=[('Wave sound file', '.wav'), ('All files', '*')],
defaultextension='.wav')
assert path_wav != '', 'ファイル名が入力されていません'
# wav出力
wavfile.write(path_wav, rate=sample_rate, data=wav_data)
# 音声を再生する。
if exists(path_wav) and play_wav is True:
startfile(path_wav)
return path_wav
if __name__ == '__main__':
logging.debug('sys.argv: %s', sys.argv)
if len(sys.argv) == 3:
main(sys.argv[1], sys.argv[2])
elif len(sys.argv) == 2:
main(sys.argv[1], None)
elif len(sys.argv) == 1:
main(input('Input file path of TMP(plugin)\n>>> ').strip('"'), None)
else:
raise Exception('引数が多すぎます。/ Too many arguments.')