Closed dschiller closed 1 year ago
Foudn a solution:
from pyo import *
from PyQt5.QtWidgets import QApplication, QWidget
import threading
class Sound:
def __init__(self):
self.server = Server()
self.server.deactivateMidi()
self.server.setBufferSize(512)
def start(self):
self.server.boot().start()
def stop(self):
self.server.stop()
def _synth(self):
# Sets fundamental frequency.
freq = 187.5
# Roland JP-8000 Supersaw emulator.
lfo4 = Sine(0.1).range(0.1, 0.75)
osc4 = SuperSaw(freq=freq, detune=lfo4, mul=0.3).out()
while True:
time.sleep(.0001)
def synth(self):
self.synth_thread = threading.Thread(target=self._synth, daemon=True)
self.synth_thread.start()
class Window(QWidget):
def __init__(self):
super().__init__()
self.show()
self.sound = Sound()
self.sound.start()
self.sound.synth()
def closeEvent(self, event):
self.sound.stop()
return super().closeEvent(event)
app = QApplication([])
window = Window()
sys.exit(app.exec_())
demo.py
It seems when
pyo
is in the window class of a Qt app then there is no sound.