Skip to content

Instantly share code, notes, and snippets.

View yarogniew's full-sized avatar
🏠
Working from home

yarogniew

🏠
Working from home
View GitHub Profile
#!/usr/bin/env python
# encoding: utf-8
from pyo import *
import random
import math
s = Server().boot()
s.start()
# s.amp = 0.1
@yarogniew
yarogniew / Midi_RawMidi_yar.py
Last active May 28, 2018 23:14
Pyo RawMidi monitor
from pyo import *
import time
num = eval(input("Enter your Midi interface number: "))
s = Server(duplex=1)
s.setMidiInputDevice(num)
s.boot()
s.start()