Merge pull request #445 from Yuan-ManX/inference_gui-1-1

Update inference_gui.py
This commit is contained in:
RVC-Boss 2024-02-09 22:12:54 +08:00 committed by GitHub
commit b99b1e86a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -133,6 +133,9 @@ class GPTSoVITSGUI(QMainWindow):
self.synthesize_button = QPushButton("合成")
self.synthesize_button.clicked.connect(self.synthesize)
self.clear_output_button = QPushButton("清空输出")
self.clear_output_button.clicked.connect(self.clear_output)
self.status_bar = QStatusBar()
main_layout = QVBoxLayout()
@ -180,6 +183,8 @@ class GPTSoVITSGUI(QMainWindow):
main_layout.addWidget(self.synthesize_button)
main_layout.addWidget(self.clear_output_button)
main_layout.addWidget(self.status_bar)
self.central_widget = QWidget()
@ -288,6 +293,9 @@ class GPTSoVITSGUI(QMainWindow):
def update_input_paths(self, input_box, file_path):
input_box.setText(file_path)
def clear_output(self):
self.output_text.clear()
def synthesize(self):
GPT_model_path = self.GPT_model_input.text()
SoVITS_model_path = self.SoVITS_model_input.text()