如何使用 Pyqt5 QtMultimedia 播放声音? [英] How to play sound with Pyqt5 QtMultimedia?

查看:54
本文介绍了如何使用 Pyqt5 QtMultimedia 播放声音?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

def play_tts(self,file_path):
   file = open(file_path)
   mixer.init()
   mixer.music.load(file)
   mixer.music.play()
   while mixer.music.get_busy():
       time.sleep(0.03)
       if window.ttsIs:
           break
   mixer.stop()
   mixer.quit()
   file.close()
   remove(file_path)

如何用 QtMultimedia 编写上述代码?

How do I write the above code with QtMultimedia?

你能举个例子吗?

推荐答案

如果文件是 .wav 则只需使用 QSound:

If the file is a .wav then just use QSound:

import os
import sys

from PyQt5 import QtCore, QtMultimedia

CURRENT_DIR = os.path.dirname(os.path.realpath(__file__))


def main():
    filename = os.path.join(CURRENT_DIR, "beal.wav")

    app = QtCore.QCoreApplication(sys.argv)

    QtMultimedia.QSound.play(filename)


    # end in 5 seconds:
    QtCore.QTimer.singleShot(5 * 1000, app.quit)

    sys.exit(app.exec_())


if __name__ == "__main__":
    main()

如果你想播放更多格式,那么你应该使用 QMediaPlayer:

If you want to play more formats then you should use QMediaPlayer:

import os
import sys

from PyQt5 import QtCore, QtMultimedia

CURRENT_DIR = os.path.dirname(os.path.realpath(__file__))


def main():
    filename = os.path.join(CURRENT_DIR, "sound.mp3")

    app = QtCore.QCoreApplication(sys.argv)

    player = QtMultimedia.QMediaPlayer()

    def handle_state_changed(state):
        if state == QtMultimedia.QMediaPlayer.PlayingState:
            print("started")
        elif state == QtMultimedia.QMediaPlayer.StoppedState:
            print("finished")
            QtCore.QCoreApplication.quit()

    player.stateChanged.connect(handle_state_changed)

    url = QtCore.QUrl.fromLocalFile(filename)
    player.setMedia(QtMultimedia.QMediaContent(url))
    player.play()

    sys.exit(app.exec_())


if __name__ == "__main__":
    main()

这篇关于如何使用 Pyqt5 QtMultimedia 播放声音?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆