Questions tagged [pyo]

A Python DSP module written in C

37 questions
0
votes
1 answer

installing pyo on mac os X 10.10.2

i recently installed pyo following this guide: Downloading and Compiling. Then i tried import pyo on python but this appeared Traceback (most recent call last): File "", line 1, in import pyo File…
Ale
  • 87
  • 1
  • 13
0
votes
1 answer

Binding a Pyo Oscillator output to a WX Event

I am building a simple signal generator in Python based on the Pyo and WX libraries. I have ran through the simple tutorials for each and have successfully bound buttons in WX to WX functions. I am now trying to generate a simple sine wave(at 440…
jay
  • 493
  • 1
  • 3
  • 11
-1
votes
2 answers

ImportError Pyo

I'm trying to import pyo in python3.8.8 and I'm not getting any results. When I try to run the command: Traceback (most recent call last): File "", line 1, in import pyo File…
-1
votes
1 answer

how am i supposed to take a user input of a path and use that path in my program

my code: enter def play(): import pyo s = pyo.Server() s.boot() s.start() s.setInputDevice(4) s.setOutputDevice(4) p = input("path: ") play_audio1 = pyo.SfPlayer(path=p, speed=[1.25, 1.25]) play_audio1.out() s.gui(locals(), exit=False) play() code…
-1
votes
1 answer

Pyo in Python; name 'Server' not defined

I use python 3.6, and I am trying to play an audio file with pyo, but when I try to run it, I get this message; Traceback (most recent call last): File "C:\Python27\pyotest.py", line 1, in from pyo import * File "C:\Python27\pyo.py",…
user10237371
-1
votes
1 answer

Pyo in Python: name 'Server' not defined

I recently installed Pyo, and I entered Python 3.6 and typed from pyo import * s = Server().boot() s.start() sf = SfPlayer("C:\Users\myname\Downloads\wot.mp3", speed=1, loop=True).out() but I get Traceback (most recent call last): File…
user10237371
-5
votes
1 answer

Using pyo in python to make music

I have to make relaxing music using pyo package in python. I am not very experienced with audio processing . Any advice for that?
1 2
3