1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
#!/usr/bin/env python
# encoding: utf-8
"""
To record sound from input mic in the buffer (4 seconds), call:
rec.play()
The buffer is looped with some funny parameters...
"""
from pyo import *
s = Server(duplex=1).boot()
tab = NewTable(4)
rec = TableRec(Input(), tab)
pit = Choice(choice=[0.5, 0.5, 0.75, 0.75, 1, 1, 1.25, 1.5], freq=[3, 4])
start = Phasor(freq=0.025, mul=tab.getDur() - 0.5)
dur = Choice(choice=[0.0625, 0.125, 0.125, 0.125, 0.25, 0.25, 0.5], freq=4)
a = Looper(
table=tab, # table to loop in
pitch=pit, # transposition
start=start, # loop start position
dur=dur, # loop duration
xfade=20, # crossfade duration in %
mode=1, # looping mode
xfadeshape=0, # crossfade shape
startfromloop=False, # first start position, False means from beginning of the table
interp=4, # interpolation method
).out()
s.gui(locals())
|