-
Notifications
You must be signed in to change notification settings - Fork 123
/
Copy pathrun.py
117 lines (101 loc) · 3.49 KB
/
run.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
import dataclasses
import logging
import multiprocessing
from argparse import ArgumentParser
from pathlib import Path
from voicevox_core import AccelerationMode
from voicevox_core.blocking import Onnxruntime, OpenJtalk, Synthesizer, VoiceModelFile
# TODO: https://github.com/VOICEVOX/voicevox_core/pull/972 をリバートする
@dataclasses.dataclass
class Args:
mode: AccelerationMode
vvm: Path
onnxruntime: str
dict_dir: Path
text: str
out: Path
style_id: int
@staticmethod
def parse_args() -> "Args":
argparser = ArgumentParser()
argparser.add_argument(
"--mode",
default="AUTO",
choices=("AUTO", "CPU", "GPU"),
help="モード",
)
argparser.add_argument(
"vvm",
type=Path,
help="vvmファイルへのパス",
)
argparser.add_argument(
"--onnxruntime",
default=f"./onnxruntime/lib/{Onnxruntime.LIB_VERSIONED_FILENAME}",
help="ONNX Runtimeのライブラリのfilename",
)
argparser.add_argument(
"--dict-dir",
default="./dict/open_jtalk_dic_utf_8-1.11",
type=Path,
help="Open JTalkの辞書ディレクトリ",
)
argparser.add_argument(
"--text",
default="この音声は、ボイスボックスを使用して、出力されています。",
help="読み上げさせたい文章",
)
argparser.add_argument(
"--out",
default="./output.wav",
type=Path,
help="出力wavファイルのパス",
)
argparser.add_argument(
"--style-id",
default=0,
type=int,
help="話者IDを指定",
)
args = argparser.parse_args()
return Args(
args.mode,
args.vvm,
args.onnxruntime,
args.dict_dir,
args.text,
args.out,
args.style_id,
)
def main() -> None:
logging.basicConfig(format="[%(levelname)s] %(name)s: %(message)s")
logger = logging.getLogger(__name__)
logger.setLevel("DEBUG")
logging.getLogger("voicevox_core_python_api").setLevel("DEBUG")
logging.getLogger("voicevox_core").setLevel("DEBUG")
args = Args.parse_args()
logger.info("%s", f"Loading ONNX Runtime ({args.onnxruntime=})")
onnxruntime = Onnxruntime.load_once(filename=args.onnxruntime)
logger.debug("%s", f"{onnxruntime.supported_devices()=}")
logger.info("%s", f"Initializing ({args.mode=}, {args.dict_dir=})")
synthesizer = Synthesizer(
onnxruntime,
OpenJtalk(args.dict_dir),
acceleration_mode=args.mode,
cpu_num_threads=max(
multiprocessing.cpu_count(), 2
), # https://github.com/VOICEVOX/voicevox_core/issues/888
)
logger.debug("%s", f"{synthesizer.is_gpu_mode=}")
logger.info("%s", f"Loading `{args.vvm}`")
with VoiceModelFile.open(args.vvm) as model:
synthesizer.load_voice_model(model)
logger.debug("%s", f"{synthesizer.metas()=}")
logger.info("%s", f"Creating an AudioQuery from {args.text!r}")
audio_query = synthesizer.create_audio_query(args.text, args.style_id)
logger.info("%s", f"Synthesizing with {audio_query}")
wav = synthesizer.synthesis(audio_query, args.style_id)
args.out.write_bytes(wav)
logger.info("%s", f"Wrote `{args.out}`")
if __name__ == "__main__":
main()