我尝试按照this question中的解决方案进行操作,但一旦发出信号,似乎没有任何事情发生。
这不是所有的代码,但它应该足以证明我正在尝试做的事情:
class StartQT5(QMainWindow):
def __init__(self):
super().__init__()
[...]
self.getFileProperties(path, batch)
def getFileProperties(self, path, batch):
self.thread = QThread()
self.w = probeThread(self)
self.w.moveToThread(self.thread)
self.w.finished[dict].connect(self.setProbeOutput)
self.thread.started.connect(self.w.run)
self.thread.start()
@pyqtSlot(dict)
def setProbeOutput(self, data):
print("gotOutput")
self.probeOutput = data
print(data)
class probeThread(QObject):
finished = pyqtSignal(dict)
def __init__(self, parent):
super().__init__()
self.parent = parent
self.output = {}
def run(self):
self.output = json.loads(subprocess.check_output('%s -v 0 -print_format json -show_format -show_streams -count_frames "%s"' % (self.parent.ffprobePath, self.parent.file)).decode("utf-8"))
print("finished")
self.finished.emit(self.output)
线程运行正常,但永远不会调用setProbeOutput
。对不起,如果这是微不足道的,但我似乎无法让它工作,谢谢! :)
答案 0 :(得分:0)
简单地做什么:
self.w.finished.connect(self.setProbeOutput)
您正在定义一个新信号并将其附加到一个插槽中,您已经在信号和插槽声明中声明了参数类型。