0

私はPyQt6を実行しています。ウィジェットに QPushButton と QLineEdit が 1 つある QMainWindow があります。ボタンをクリックするたびに音を鳴らしたいのですが、同時に行編集にテキストを追加します。以前playsoundはこの効果を実現していましたが、サウンドが再生されてテキストが追加されるときに遅延が発生します。

その遅れをなくしたい。また、PyQt4 には QSound オプションがありましたが、PyQt6 にはもう存在しません。多分に代わるものがありplaysoundますか?

とにかく、ここに私のコードがあります:

import sys
from functools import cached_property, partial
from threading import Thread
from playsound import playsound
from PyQt6.QtCore import *
from PyQt6.QtGui import *
from PyQt6.QtWidgets import *

class Main(QMainWindow):
    def __init__(self):
        super().__init__()
        self.setWindowTitle('Play Sound')
        central_widget = QWidget()
        self.setCentralWidget(central_widget)
        self.btn = QPushButton()
        self.lay = QHBoxLayout(central_widget)
        self.btn.setText('Play the Sound')
        self.lay.addWidget(self.btn)
        self.qline = QLineEdit()
        self.qline.setFixedHeight(35)
        self.lay.addWidget(self.qline)

        self.btn.clicked.connect(partial(self.buildExpression, 'X'))
        self.btn.clicked.connect(self.playsound)

    def line(self):
        return self.qline.text()
        
    def lineedit(self, text):
        self.qline.setText(text)
        self.qline.setFocus()

    def buildExpression(self, sub_exp):

        expression = self.line() + sub_exp
        self.lineedit(expression)

    def playsound(self):
        playsound('sound.mp3')

def background():
        while True:
            playsound('background.mp3')

def main():
    app = QApplication(sys.argv)
    run = Main()
    Thread(target=background, daemon=True).start()
    run.show()
    app.exec()

if __name__ == "__main__":
    main()
4

1 に答える 1