Advertisement
Guest User

Untitled

a guest
Mar 25th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. app = QApplication(sys.argv)
  2.  
  3. window = MainWindow()
  4. window.show()
  5.  
  6. url = QUrl.fromLocalFile("./sound2.mp3")
  7. content = QMediaContent(url)
  8. player = QMediaPlayer()
  9. player.setMedia(content)
  10. player.play()
  11.  
  12. player.stateChanged.connect(app.quit)
  13.  
  14. app.exec_()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement