Update inference_gui.py

This commit is contained in:
Yuan-Man 2024-02-09 18:29:11 +08:00 committed by GitHub
parent 028b78fa1e
commit f8820cc48e
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()