Thursday, 20 March 2014
Journey - Further Experiments 7
It was about time I did some Further Experiments. This one is in high resolution resonance and phase modulation synthesis.
The video of 'Journey'
The theme of Sython Song seems to be random walks and experimentation in generative techniques rather than hard core synthesis; so, despite 'Journey' being created in Python I have grouped it under Further Experiments In Extreme Synthesis. It feels really good to be able to bring this piece to life not because it is somehow amazing but because it was so easy achieved computationally.
Of late I have been trying to create 'Perfect Fi' - in other words, synthesis without artefacts. Clearly that is impossible. However, it makes a good target to aim for. One of the biggest problems for digital synthesis is aliasing producing low frequency inharmonics. These build up until then form a low frequency 'swell' of sound which is something cool be usually horrible.
There are three ways to reduce this effect.
1) Don't make the aliased frequencies in the first place
2) Reduce them through filtering
3) Reduce them by lifting the Nyquist frequency
Using more additive synthesis helps with 1. Distortion synthesis has a nasty habit of creating aliased frequencies. For example, distorting a sine wave into a sawtooth generates frequencies all the way up to the sample rate; fully half of these will be aliased. Producing the saw tooth by adding frequencies up to the Nyquist limit produces a much cleaner sound.
The 'Clean' decimating filter helps with 2. Being more careful with filtering as one goes along helps two. If a signal is carefully filtered before passing to a distortion will help avoid he distortion injecting aliased frequenceis.
Journey uses 3 for the first time in a long time. It was created at 192 000 samples per second rather than the default 96000. This means that many less frequencies from the audio spectrum end up 'escaping' up above the Nyquist limit because that limit is up at 96KHz.
This has been a challenge until now because 192000 takes twice as much storage as 96000. Storage has been the major performance limit for Sonic Field. I originally designed SF to run in the Cloud. I had this idea that memory would be no limit. However, I soon realised I was unlikely to actually cluster SF in the cloud any time soon. I run it on a 16Gig Mac Book Pro myself. The runs out of memory very easily doing a complex patch.
But no longer - audio signals can not be backed by Memory Mapped Files. Thus I can run patches which required 30,40,50 or even 100 Gigs quite effectively. The performance drop is too bad if the patch is written to access small blocks of audio at a time.
Until the latest release of SF the previous data files system and the memory mapped one suffered from no having aggressive garbage collection. I tried to couple them to the Java garbage collector. That did not work well. It resulted in data which was going to be garbage collected still being written to disk. To get the system to work well, I needed to collect file backed garbage straight away at the point it was not longer wanted.
Now SF has reference counted garbage collection
The implementation under the covers will be published on Nerds Central.
From a patch writing point of view is it simple:
- All new signals are generated with a count of 1.
- Every time a signal is passed to a processor its count is reduced.
- When a count hits 0 the signal is garbage collected.
- The + operators (as in +mySignal) will increase the count of a signal.
- If the same signal is to be passed to more than one processor the + operator can be used to keep the correct count.
- In some situations, this can lead to the count being too high and the signal not being collected.
- The - operator reduces the count and so allows collection under these situations.
Here is an example of using the + and - operators:
convol_=sf.FrequencyDomain(sf.Concatenate(convol,sf.Silence(grainLength)))
signal_=sf.Concatenate(signal,sf.Silence(grainLength))
out=[]
for grain in sf.Granulate(signal_,grainLength):
(signal_i,at)=grain
out.append((reverbInner(signal_i,+convol_,grainLength),at))
-convol_
Here is the patch which created Journey:
import math
import random
sf.SetSampleRate(192000)
# Single threaded for debug
#def sf_do(toDo):
# return toDo()
def ring(pitch,length):
print "Ring: " + str(pitch) + "/" + str(length)
sig1 = sf.SineWave(length,pitch*1.2)
sig2 = sf.SineWave(length,pitch*1.2 + 1)
env = sf.SimpleShape((0,-60),(125,0),(length,-30))
sig1 = sf.Multiply(+env,sig1)
sig1 = sf.Pcnt90(sf.DirectMix(1,sig1))
sig3 = sf.PhaseModulatedSineWave(pitch,sig1)
sig3 = sf.Multiply(+env,sig3)
sig2 = sf.Multiply(+env,sig2)
sig2 = sf.Pcnt90(sf.DirectMix(1,sig2))
sig4 = sf.PhaseModulatedSineWave(pitch,sig2)
sig4 = sf.Multiply(env,sig4)
sig5 = sf.Volume(sf.Mix(sig3,sig4),6)
sig=sf.Saturate(sig5)
sig=sf.ResonantFilter(sig,0.99,0.05,1000.0/pitch)
return sf.Realise(sf.Normalise(sig))
def doFormant(sig,f1,f2,f3):
#sig=sf.BesselLowPass(sig,f3,1)
def doFormantInner(a,b,c,d):
def doFII():
return sf.RBJPeaking(a,b,c,d)
return sf_do(doFII)
sig1=doFormantInner(+sig,f1,1,40)
sig2=doFormantInner(+sig,f2,2,20)
sig3=doFormantInner( sig,f3,1,40)
x=sf.Mix(sig1,sig2,sig3)
x=sf.Normalise(x)
return sf.Realise(x)
def makeSingBase(pitch,length):
pitch=float(pitch)
length=float(length)
drop=1.0
notes=[]
for i in range(1,100):
thisPitch=pitch*i
if(thisPitch>10000):
continue
print thisPitch
notes.append(sf.NumericVolume(sf.PhasedSineWave(length,thisPitch,random.random()),drop))
drop=drop*0.6
sig=sf.Normalise(sf.Mix(notes))
return sig
def doSingEnv(sig):
length=sf.Length(+sig)
a=0
d=0
s=0
r=length
k1=50.0
k2=length-50.0
if(length<1000):
a=100.0
d=250.0
s=(length-d)/2.0+d
else:
a=length*0.1
d=length*0.25
s=length*0.5
env=sf.SimpleShape((0,-90),(k1,-30),(a,0),(d,-6),(s,-12),(k2,-30),(r,-90))
sig=sf.Multiply(sig,env)
sig=sf.Normalise(sig)
return sig
#beat
def doFormant1(sig):
return doFormant(sig,300,2800,3300)
#bit
def doFormant2(sig):
return doFormant(sig,430,2500,3100)
#bet
def doFormant3(sig):
return doFormant(sig,600,2350,3000)
#bat
def doFormant4(sig):
return doFormant(sig,860,2050,2850)
#part
def doFormant5(sig):
return doFormant(sig,850,1200,2800)
#pot
def doFormant6(sig):
return doFormant(sig,590,900,2700)
#boat
def doFormant7(sig):
return doFormant(sig,470,1150,2700)
#boat
def doFormant8(sig):
return doFormant(sig,470,1150,2700)
#book
def doFormant9(sig):
return doFormant(sig,370,950,2650)
#but
def doFormant10(sig):
return doFormant(sig,760,1400,2800)
#pert
def doFormant11(sig):
return doFormant(sig,500,1650,1950)
formants=[
doFormant1,
doFormant2,
doFormant3,
doFormant4,
doFormant5,
doFormant6,
doFormant7,
doFormant8,
doFormant9,
doFormant10,
doFormant11
]
def doNote(pitch,length,formant):
def doNoteInner():
sig=ring(pitch,length)
sig=formants[int(formant)](sig)
length_=sf.Length(+sig)
env=sf.NumericShape((0,0),(length_/2.0,1),(length_,0))
y=sf.Multiply(sig,env)
x=sf.Realise(y)
return x
return sf_do(doNoteInner)
root = 32
initial = sf.Silence(2000)
nNotes = 64
length = 16384
#length = 1024
def makeTrack():
notesL=[]
notesR=[]
at=1000
for x in range(0,nNotes):
print "Performing note: " + str(x)
a = 1+x%7
b = 1+x%11
c = 2*(1+x%3)
d = ((x+1)%3)*2
e = math.floor(x%22/2)
f = math.floor((11+x)%22/2)
g = 1.0+(x%8.0)/3.0
h = 1.0+(x%16.0)/6.0
i = x%5
print (a,b,c,d,e,f,g,h,i)
fa = root*a
fb = root*b
na1 = doNote(fa,length*g,e)
nb1 = doNote(fb,length*h,f)
a = 8 - (x%7)
b = 12 - (x%11)
fa = root*a
fb = root*b
na2 = doNote(fa,length*g,e)
nb2 = doNote(fb,length*h,f)
signal=sf.Volume(na1,c)
signal=sf.Concatenate(signal,nb1)
signal=sf.Concatenate(signal,sf.Volume(na2,d))
signal=sf.Concatenate(signal,nb2)
leftBias = i/4.0
rightBias = 1.0-leftBias
leftT = 30*leftBias
rightT = 30*rightBias
signal=sf.Normalise(signal)
sl=sf.NumericVolume(+signal,leftBias)
sr=sf.NumericVolume( signal,rightBias)
notesL.append((sl,at+leftT))
notesR.append((sr,at+rightT))
at=at+length/4
def mixL():
return sf.FixSize(sf.WaveShaper(-0.03,0.2,0,-1,0.2,2,sf.Normalise(sf.MixAt(notesL))))
def mixR():
return sf.FixSize(sf.WaveShaper(-0.03,0.2,0,-1,0.2,2,sf.Normalise(sf.MixAt(notesR))))
ret=(sf_do(mixL),sf_do(mixR))
return ret
(left,right)=makeTrack()
left=left.get()
right=right.get()
lr=sf.Length(+right)
ll=sf.Length(+left)
if(lr>ll):
left=sf.Concatenate(left,sf.Silence(lr-ll))
elif(ll>lr):
right=sf.Concatenate(right,sf.Silence(ll-lr))
def OnTop(signal,root):
inp=sf.Saturate(sf.FixSize(+signal))
x=sf.RBJPeaking(+inp,root*20,0.25,24)
y=sf.RBJPeaking(+inp,root*25,0.25,24)
z=sf.RBJPeaking( inp,root*30,0.25,24)
x=sf.Saturate(sf.FixSize(x))
y=sf.Saturate(sf.FixSize(y))
z=sf.Saturate(sf.FixSize(z))
return sf.FixSize(sf.Mix(signal,sf.Pcnt15(x),sf.Pcnt_10(y),sf.Pcnt10(z)))
left=sf.Realise(OnTop(left,root))
right=sf.Realise(OnTop(right,root))
sf.WriteFile32((+left,+right),"temp/temp.wav")
def reverbInner(signal,convol,grainLength):
def reverbInnerDo():
mag=sf.Magnitude(+signal)
if mag>0:
signal_=sf.Concatenate(signal,sf.Silence(grainLength))
signal_=sf.FrequencyDomain(signal_)
signal_=sf.CrossMultiply(convol,signal_)
signal_=sf.TimeDomain(signal_)
newMag=sf.Magnitude(+signal_)
signal_=sf.NumericVolume(signal_,mag/newMag)
# tail out clicks due to amplitude at end of signal
return signal_
else:
-convol
return signal
return sf_do(reverbInnerDo)
def reverberate(signal,convol):
def reverberateDo():
grainLength = sf.Length(+convol)
convol_=sf.FrequencyDomain(sf.Concatenate(convol,sf.Silence(grainLength)))
signal_=sf.Concatenate(signal,sf.Silence(grainLength))
out=[]
for grain in sf.Granulate(signal_,grainLength):
(signal_i,at)=grain
out.append((reverbInner(signal_i,+convol_,grainLength),at))
-convol_
return sf.Realise(sf.Normalise(sf.MixAt(out)))
return sf_do(reverberateDo)
(convoll,convolr)=sf.ReadFile("temp/revb.wav")
wleft =reverberate(+left,convoll)
wright=reverberate(+right,convolr)
wleft=wleft.get()
wright=wright.get()
left_out=sf.Normalise(sf.MixAt(
(sf.Pcnt60(+wleft),10),
(sf.Pcnt10(+wright),40),
(sf.Pcnt10(+wleft),120),
(sf.Pcnt15(+left),0),
(sf.Pcnt5(+right),110)
))
right_out=sf.Normalise(sf.MixAt(
(sf.Pcnt70(+wright),10),
(sf.Pcnt10(wleft),40),
(sf.Pcnt10(wright),130),
(sf.Pcnt20(right),0),
(sf.Pcnt5(left),105)
))
#left = sf.Realise(left)
#right = sf.Realise(right)
sf.WriteFile32((left_out,right_out),"temp/temp_post.wav")
Sunday, 2 March 2014
Python: Creating Oscillators In Python
What is an Oscillator and how can we great one using a generator in Python?
An oscillator is something which naturally passes back and forth through some fixed or semi-fixed pattern. A simple but effective transistor based oscillator is a phase delay (or phase shift) circuit:
| Wiki Commons - see here http://en.wikipedia.org/wiki/File:RC_phase_shift_oscillator.svg |
The output is delayed and fed back into the input. The output is the inverse of the input. This means that without the delay the circuit would do nothing at all. However, because there is a delay it oscillates making a sine wave. We can make a Python generator do very much the same thing:
from com.nerdscentral.audio import SFData
def oscillator(damping):
damping = float(damping)
weight = 0.1
value = 0.0
middle = value
yield 0,0
while(1):
if(value>middle):
weight-=damping
else:
weight+=damping
value+=weight
yield value,weight
It almost looks too simple to work but it does. The phase shift delay is not caused by 'recording' a sequence of output values and feeding them into the input (inverted). It is done by making the feedback cumulative. The variable weight is slowly shifted to oppose the variable value. If we plot the two variables as waves we get this:
| Waveforms of weight and value. value top. weight bottom. These are not plotted to amplitude scale. The max value of wave is ca 50 and the max value of weight is ca .01 |
We can see from the above that weight is 90 degrees out of phase with value. We have made a phase delay oscillator. This approach makes a passible sine wave: However, the amplitude is not controlled at all that the produced wave for is not a very good sine wave.
| The spectrum of our oscillator output. The large number and magnitude of harmonics shows it not to be a very pure sine wave. |
def oscillator(damping):
damping = float(damping)
lower = -1.0
upper = 1.0
weight = 0.1
value = 0.0
middle = value
yield 0,0
while(1):
if(value>middle):
weight-=damping
else:
weight+=damping
value+=weight
yield out,weight
if(out<lower):
value=prev
elif(out>upper):
value=prev
This addition locks the oscillator between +-1 and improves the sine wave quite a bit. The new spectrum looks like this (it is higher frequency for the given damping):
| Slightly enhanced oscillator spectrum |
Let's Make Some Sounds
Making oscillators is fun, but now we have an analogue style oscillator in Python, we really have a moral responsibility to make sounds with it! Will the computational equivalent of analogue make more complex and interesting signals and traditional digital stuff? Here is a much more interesting version of the oscillator:
def oscilator(damping,asym=1.0,mixer=0):
damping = float(damping)
lower = -1.0
upper = 1.0
weight = 0.1
value = 0.0
middle = value
gain = 1.0
prev = 0.0
cross = 0.0
pos = 0.0
gainV = 0.9999
xcount = 0
asym = float(asym)
yield 0,0,0
while(1):
if(value>middle):
weight-=damping*asym
else:
weight+=damping
if(mixer != 0):
value+=mixer.next()
value+=weight
out=value*gain
yield out,weight,xcount
if(out<lower):
value=prev
gain*=gainV
elif(out>upper):
value=prev
gain*=gainV
elif(prev>0 and value<0):
gain/=gainV
xcount+=1
pos+=1
prev=value
def wobble(damping):
wosc=oscilator(damping,1.0)
while(1):
s,t,xs=wosc.next()
yield s*0.00001
The above uses recursive generators to make one oscillator inject instability into a second. We pass an instance of wobble into the mixer parameter of oscillator to get the effect. I have also added the ability to inject asymmetry into the oscillator to add harmonics. In have highlighted the bits of code which do these things.
We can put the output of our oscillator into a Sonic Field SFData object and then process it like any other sound:
from com.nerdscentral.audio import SFData
...
data=SFData.build(len)
for x in range(0,length):
s,t,xs=osc.next()
data.setSample(x,s)
Yes - it really is that simple to create an auto signal from a Python generator using Sython.
Warning - read the label carefully:
If you are familiar with the determinism of working with normal digital signals, this approach will come as a bit of a shock. What you end up with is unstable and pretty much unpredictable. Though the output signal is deterministic (you run it twice you get the same numbers) it is also highly unstable. That really nice sine wave I showed above is a 'attractor' for the equation. It is a well behaved oscillating attractor. What you get with the more complex recursive version is a 'strange attractor'; the signal does not repeat it self. It might not even be a real attractor but just a semi-stable state from which, after enough cycles, the system will escape. Also, forget normal tuning, the output frequency is not linearly dependant on the input one. To get any sort of accurate pitch I would suggest counting the crossovers and then changing the sample rate to lock the pitch to that required.
First Creation:
Above is the first creation I have made with this new technique. It is not music at all. I wanted to create a sound into which the listener is placed which conveys the menace of WWII era piston engine aircraft. The very rich and ever changing 'analogue' nature of the oscillators does this in a way much more convincing that I think I could have managed using the normal sine wave generator and post processing approach of digital synthesis (or at least, not as easily).
Here is the patch which created the piece:
import math
import random
from com.nerdscentral.audio import SFData
def fixSize(signal):
mag=sf.MaxValue(signal)
return sf.NumericVolume(signal,1.0/mag)
def nullMixer():
while(1):
yield 0
def oscilator(damping,asym=1.0,mixer=0):
damping = float(damping)
lower = -1.0
upper = 1.0
weight = 0.1
value = 0.0
middle = value
gain = 1.0
prev = 0.0
cross = 0.0
pos = 0.0
gainV = 0.9999
xcount = 0
asym = float(asym)
yield 0,0,0
while(1):
if(value>middle):
weight-=damping*asym
else:
weight+=damping
if(mixer != 0):
value+=mixer.next()
value+=weight
out=value*gain
yield out,weight,xcount
if(out<lower):
value=prev
gain*=gainV
elif(out>upper):
value=prev
gain*=gainV
elif(prev>0 and value<0):
gain/=gainV
xcount+=1
pos+=1
prev=value
def wobble(damping):
wosc=oscilator(damping,1.0)
while(1):
s,t,xs=wosc.next()
#print s
yield s*0.00001
def invasion(d1,d2,seconds):
osc1=oscilator(d1,2,wobble(0.000020))
osc2=oscilator(d1,2,wobble(0.000015))
osc3=oscilator(d1,2,wobble(0.000010))
osc4=oscilator(d1,2,wobble(0.000005))
osc5=oscilator(d2,1.5,wobble(0.000020))
osc6=oscilator(d2,1.5,wobble(0.000015))
osc7=oscilator(d2,1.5,wobble(0.000010))
osc8=oscilator(d2,1.5,wobble(0.000005))
length=96000*seconds
xs=0
def drone(osc,len):
def doDrone():
data=SFData.build(len)
print "Doing Drone"
for x in range(0,length):
s,t,xs=osc.next()
data.setSample(x,s)
# Go to a lot of effort to remove
# clicks due to DC offset of the start and end
l=sf.Length(data)
data=sf.ButterworthHighPass(sf.Normalise(data),10,2)
data=sf.Multiply(
data,
sf.NumericShape((0,0),(256,0),(l/2,1),(l-256,0),(l,0))
)
data=sf.Multiply(
sf.Saturate(data),
sf.NumericShape((0,0),(256,1),(l-256,1),(l,0))
)
return sf.Realise(data)
return sf_do(doDrone)
data1=drone(osc1,length)
data2=drone(osc2,length)
data3=drone(osc3,length)
data4=drone(osc4,length)
data5=drone(osc5,length)
data6=drone(osc6,length)
data7=drone(osc7,length)
data8=drone(osc8,length)
def mix1():
return sf.Realise(
fixSize(
sf.MixAt(
(sf.Pcnt10(data2),30),
(sf.Pcnt20(data3),20),
(data1,0),
(data4,0),
(sf.Pcnt10(data6),30),
(sf.Pcnt20(data7),20),
(data5,0),
(data8,0)
)
)
)
def mix2():
return sf.Realise(
fixSize(
sf.MixAt(
(sf.Pcnt10(data1),30),
(sf.Pcnt20(data4),20),
(data2,0),
(data3,0),
(sf.Pcnt10(data6),30),
(sf.Pcnt20(data7),20),
(data5,0),
(data8,0)
)
)
)
dataL=sf_do(mix1)
dataR=sf_do(mix2)
return (dataL,dataR)
dataL1,dataR1=invasion(0.000025,0.000015,45)
dataL2,dataR2=invasion(0.000020,0.000007,45)
dataL3,dataR3=invasion(0.000011,0.000010,45)
dataL4,dataR4=invasion(0.000010,0.000012,45)
dataL=sf.Normalise(
sf.MixAt(
(dataL1, 0),
(dataL2, 30000),
(dataL3, 60000),
(dataL1, 90000),
(dataL4,120000),
(dataL1,150000),
(dataL4,160000)
)
)
dataR=sf.Normalise(
sf.MixAt(
(dataR1, 0),
(dataR2, 30000),
(dataR3, 60000),
(dataR1, 90000),
(dataR4,120000),
(dataR1,150000),
(dataR4,160000)
)
)
sf.WriteFile32((dataL,dataR),"temp/temp.wav")
dataL=0
dataR=0
def reverbInner(signal,convol,grainLength):
def reverbInnerDo():
mag=sf.Magnitude(signal)
if mag>0:
signal_=sf.Concatenate(signal,sf.Silence(grainLength))
signal_=sf.FrequencyDomain(signal_)
signal_=sf.CrossMultiply(convol,signal_)
signal_=sf.TimeDomain(signal_)
newMag=sf.Magnitude(signal_)
signal_=sf.NumericVolume(signal_,mag/newMag)
# tail out clicks due to amplitude at end of signal
l=sf.Length(signal_)
sf.Multiply(
sf.NumericShape(
(0,1),
(l-100,1),
(1,0)
),
signal_
)
return signal_
else:
return signal
return sf_do(reverbInnerDo)
def reverberate(signal,convol):
def reverberateDo():
grainLength = sf.Length(convol)
convol_=sf.FrequencyDomain(sf.Concatenate(convol,sf.Silence(grainLength)))
signal_=sf.Concatenate(signal,sf.Silence(grainLength))
out=[]
for grain in sf.Granulate(signal_,grainLength):
(signal_,at)=grain
out.append((reverbInner(signal_,convol_,grainLength),at))
return sf.Normalise(sf.MixAt(out))
return sf_do(reverberateDo)
(left,right)=sf.ReadFile("temp/temp.wav")
(convoll,convolr)=sf.ReadFile("temp/revb.wav")
wleft =reverberate(left,convoll)
wright=reverberate(right,convolr)
left=sf.Normalise(sf.MixAt(
(sf.Pcnt40(wleft),10),
(sf.Pcnt5(wright),40),
(sf.Pcnt5(wleft),120),
(sf.Pcnt45(left),0),
(sf.Pcnt5(right),110)
))
right=sf.Normalise(sf.MixAt(
(sf.Pcnt40(wright),10),
(sf.Pcnt5(wleft),40),
(sf.Pcnt5(wright),130),
(sf.Pcnt45(right),0),
(sf.Pcnt5(left),105)
))
sf.WriteFile32((left,right),"temp/temp_post.wav")
Labels:
analogue,
generative,
generators,
oscillator,
python,
sython,
youtube
Saturday, 22 February 2014
Downloads
Welcome To The Sonic Field Download Page
News:
I have not kept up with this page at all. However, a quite check at github will show that Sonic Field has been coming along. The biggest piece of recent news is the new memory manager. Now out of memory errors a thing of the past.
Check out this blog and github commit comments for news.
Blessed Be The Cheese Makers
License:
Sonic Field is licensed under AGPL3. The bundled Jython jar is licensed under its own license - seee www.jython.org
Those found abusing the license terms will be banished to Castle Anthrax (which might not be such a bad thing).
No - seriously - do not mess with copy right. If you are interested in other licensing terms for any of my code - just ask and we will see what we can do.
Releases And Downloads:
- Latest development version tree is on GitHub. This is generally working as I do not push broken builds!
http://github.com/nerds-central/SonicFieldRepo - In the past I also had snapshots for downloads, I have given up supporting this as checking out the github version should be very simple. If you as not a github user and would like to get your hands on the latest version - just drop me a comment and I'll sort something.
And never forget that he is not the messiah, he is a very naughty boy.
Friday, 21 February 2014
The Code Behind Valley Of The Sythons
The entire patch and some description of how it works beneath that:
The key to understanding what comes next is that Sonic Field now works as a big extension to Python (Jython actually - Python running on the Java Vertual Machine). A Sonic Field patch is created using Python statements. However, the data being passed around is not Python Data it is hidden from the view of Python inside opaque Java objects.
Valley Of The Sythons
The original idea was that Sonic Field sounds were 'signals' which were passed between 'processors'. Control of processing was also done via signals. The metaphor continues into Sython (Sonic Field Python). The syntax of Python makes the approach less obvious but it is still there.
sf.Multiply(sf.NumericShape((0,0),(len,1)),trem)
For example the above creates a signal which starts at 0 and works up to 1 at length len in milliseconds. The signal is then multiplied with another signal held in variable trem. All Sonic Field processors are exposed to Python as methods on the sf object.
One last example before the code dump:
sf.Monitor(sf.SineWave(1000,440))
The above is a very simple Sython patch. It just makes an A4 tone for one second. However, the tone will have clicks at each end because it has no attack or release. So:
sf.Monitor(
sf.Multiply(
sf.SimpleShape((0,-90),(100,0),(900,0),(1000,-90)),
sf.SineWave(1000,440)
)
)
Now that does have an attack and release so it will sound much more like the beep one might expect.
Valley Of The Sythons:
import math
import random
execfile("patches/python/concurrent.py")
def randWalk(value,size,uBound):
value = float(value)
size = float(size)
uBound = float(uBound)
r=random.random()
r=math.floor(r*size)-math.floor((size/2.0))
value+=r
if value<1:
value=2
elif value>uBound:
value=uBound-2
return value
def randWalk3(value,uBound):
return randWalk(value,3,uBound)
def fixSize(signal):
mag=sf.MaxValue(signal)
return sf.NumericVolume(signal,1.0/mag)
def fixSizeSat(signal):
return fixSize(sf.Saturate(fixSize(signal)))
def saturatedNode(beat,pPitch,pitch,a,d,s,r,v):
def saturateNode_():
l=a+d+s+r
if l>beat*2:
iPitch=(pitch+pPitch)/2.0
pos=beat/8
signal1=sf.Slide((0,iPitch),(pos,pitch),(l,pitch))
signal2=sf.Slide((0,iPitch),(pos,pitch*2),(l,pitch*2.02))
signal3=sf.Slide((0,iPitch),(pos,pitch*3),(l,pitch*3.03))
else:
signal1=sf.SineWave(l,pitch)
signal2=sf.SineWave(l,2*pitch*1.003)
signal3=sf.SineWave(l,3*pitch*1.005)
envelope= sf.NumericShape(
(0,0),
(a,1),
(a+d,0.75),
(a+d+s,0.25),
(a+d+s+r,0)
)
sat=(20-pitch/1000)
if sat<1:
sat=1
def doSat(sigIn):
temp=sf.NumericVolume(sf.Multiply(sigIn,envelope),sat)
return sf.Normalise(sf.Clean(sf.Saturate(temp)))
signal=sf.Mix(
doSat(signal1),
sf.DB_6(doSat(signal2)),
sf.DB_15(doSat(signal3))
)
envelope= sf.NumericShape(
(0,0),
(a,0.1),
(a+d,0),
(a+d+s,0.1),
(a+d+s+r,0)
)
signal=sf.Mix(
sf.Multiply(
sf.ButterworthLowPass(sf.WhiteNoise(l),pitch*5,1),
envelope),
signal
)
signal=fixSize(signal)
hf=sf.Clip(sf.NumericVolume(signal,3))
r1=fixSizeSat(sf.RBJPeaking(hf,pitch*1.3,0.5,85))
r2=fixSizeSat(sf.RBJPeaking(hf,pitch*2.1,0.5,85))
r3=fixSizeSat(sf.RBJPeaking(hf,pitch*2.9,0.5,85))
signal=sf.Mix(
sf.DB_6(signal),
sf.DB_1(r1),
sf.DB_4(r2),
sf.DB_6(r3)
)
signal=sf.Clean(sf.NumericVolume(signal,v))
signal=sf.BesselLowPass(signal,pitch*2,4)
envelope= sf.NumericShape(
(0,1),
(a+d+s+r-125,1),
(a+d+s+r,0)
)
signal=sf.Multiply(envelope,signal)
trem=sf.Slide((0,6*random.random()),(l,0.5*random.random()))
trem=sf.Multiply(sf.NumericShape((0,0),(l,1)),trem)
trem=sf.Mix(
sf.NumericShape((0,1),(l,1)),
trem
)
return sf.Multiply(signal,trem)
return sf_do(saturateNode_)
def run(pitch,beat,minutes,startP,initial,overV):
notesL=[]
notesR=[]
oPitch=float(pitch)
pitchScaleDenom = 1.0
pitchScaleNume = float(startP)
lengthScale = 4.0
volumeScale = 4.0
oVolume = 4.0
at=beat*float(initial)
pPitch=float(pitch)
while at/60000 < minutes:
pitchScale = pitchScaleNume/pitchScaleDenom
rvs = 1.0/volumeScale
volume = rvs*oVolume
pitch = pitchScale*oPitch
length = lengthScale*beat
# Create a consistent envelope
a = length*0.25
d = length*0.5
s = length*1.0
r = length*2.0
if a<50:
a=50
if d<50:
d=50
if a>d-50:
a=d/2
r=r-s-d-a
s=s-d-a
d=d-a
vCorrection = 1/pitchScale
# Do not over correct very & v high low frequencies
# or very quiet notes. This aim it to stop loud highs
# dominating (psycho-acoustics)
if rvs<0.2:
if vCorrection<1:
vCorrection=1
if vCorrection>4:
vCorrection=4
print (
at,
"PitchNume: ", pitchScaleNume,
"PitchDenom: ", pitchScaleDenom,
"Volume: ", volumeScale,
"Pitch: ", pitch,
"Length: ", length,
"Rvs: ", rvs,
"VCorr: ", vCorrection
).__str__()
signal = saturatedNode(
beat,
pPitch,
pitch,
a,
d,
s,
r,
volume * vCorrection
)
lr=random.random()
rl=1.0-lr
notesL.append([sf.NumericVolume(signal,lr),at+30*rl])
notesR.append([sf.NumericVolume(signal,rl),at+30*lr])
at+=length
pitchScaleDenom = randWalk3(pitchScaleDenom,10)
pitchScaleNume = randWalk3(pitchScaleNume,16)
lengthScale = randWalk3(lengthScale,8)
volumeScale = randWalk3(volumeScale,8)
pPitch = pitch
return (
sf.NumericVolume(sf.Normalise(sf.Clean(sf.MixAt(notesL))),overV),
sf.NumericVolume(sf.Normalise(sf.Clean(sf.MixAt(notesR))),overV)
)
def compressInner(signal,amount):
def compressInnerDo():
if sf.MaxValue(signal)<0.001:
return signal
signal_=sf.Normalise(signal)
stf=sf.Normalise(sf.ButterworthLowPass(signal_,128,2))
offset=1.0-amount
sr=sf.Reverse(sf.Follow(sf.Reverse(stf),1,1024))
sw=sf.Follow(stf,1,1024)
shape=sf.Mix(sr,sw)
div=1.0/sf.MaxValue(shape)
shape=sf.NumericVolume(shape,div)
shape=sf.DirectMix(offset,sf.NumericVolume(shape,amount))
return sf.Normalise(sf.Divide(signal_,shape))
return sf_do(compressInnerDo)
def compress(signal,amount):
def compressDo():
cpo=amount
signalM=sf.BesselBandPass(signal,200,2000,4)
signalH=sf.BesselHighPass(signal ,2000,4)
signalL=sf.BesselLowPass( signal , 200,4)
amount_=cpo*cpo
signalM=compressInner(signalM, amount_)
signalH=compressInner(signalH, amount_)
signalL=compressInner(signalL, amount_)
return sf.Normalise(sf.MixAt(
(sf.Pcnt40(signalL),3.5),
(sf.Pcnt20(signalM),0.0),
(sf.Pcnt40(signalH),0.0)
))
return sf_do(compressDo)
def reverbInner(signal,convol,grainLength):
def reverbInnerDo():
mag=sf.Magnitude(signal)
if mag>0:
signal_=sf.Concatenate(signal,sf.Silence(grainLength))
signal_=sf.FrequencyDomain(signal_)
signal_=sf.CrossMultiply(convol,signal_)
signal_=sf.TimeDomain(signal_)
newMag=sf.Magnitude(signal_)
signal_=sf.NumericVolume(signal_,mag/newMag)
# tail out clicks due to amplitude at end of signal
l=sf.Length(signal_)
sf.Multiply(
sf.NumericShape(
(0,1),
(l-100,1),
(1,0)
),
signal_
)
return signal_
else:
return signal
return sf_do(reverbInnerDo)
def reverberate(signal,convol):
def reverberateDo():
grainLength = sf.Length(convol)
convol_=sf.FrequencyDomain(sf.Concatenate(convol,sf.Silence(grainLength)))
signal_=sf.Concatenate(signal,sf.Silence(grainLength))
out=[]
for grain in sf.Granulate(signal_,grainLength):
(signal_,at)=grain
out.append((reverbInner(signal_,convol_,grainLength),at))
return sf.Normalise(sf.MixAt(out))
return sf_do(reverberateDo)
def doRun1():
return run(128,1024 ,6,1,0,1.0)
def doRun2():
return run(128.0*4.0/3.0,1024,6,2,1,1.0)
def doRun3():
return run(256.0*3.0/2.0,1024,6,1,5,0.5)
def doRun4():
return run(512.0*5.0/4.0,1024,6,1,9,0.25)
random.seed(0.128)
x1=sf_do(doRun1)
x2=sf_do(doRun2)
(left1,right1) = x1.get()
sf.WriteSignal(left1,"temp/l1")
sf.WriteSignal(right1,"temp/r1")
(left2,right2) = x2.get()
sf.WriteSignal(left2,"temp/l2")
sf.WriteSignal(right2,"temp/r2")
x3=sf_do(doRun3)
x4=sf_do(doRun4)
(left3,right3) = x3.get()
sf.WriteSignal(left3,"temp/l3")
sf.WriteSignal(right3,"temp/r3")
(left4,right4) = x4.get()
sf.WriteSignal(left4,"temp/l4")
sf.WriteSignal(right4,"temp/r4")
left1=sf.ReadSignal("temp/l1")
left2=sf.ReadSignal("temp/l2")
left3=sf.ReadSignal("temp/l3")
left4=sf.ReadSignal("temp/l4")
left = sf.Normalise(sf.Clean(fixSize(sf.Mix(left1,left2,left3,left4))))
left = compress(left,0.33)
sf.WriteSignal(left,"temp/l")
left=""
right1=sf.ReadSignal("temp/r1")
right2=sf.ReadSignal("temp/r2")
right3=sf.ReadSignal("temp/r3")
right4=sf.ReadSignal("temp/r4")
right = sf.Normalise(sf.Clean(fixSize(sf.Mix(right1,right2,right3,right4))))
right = compress(right,0.33)
sf.WriteSignal(right,"temp/r")
right=""
sf.WriteFile32((sf.ReadSignal("temp/l"),sf.ReadSignal("temp/r")),"temp/temp.wav")
(left,right)=sf.ReadFile("temp/temp.wav")
(convoll,convolr)=sf.ReadFile("temp/terrys_warehouse_stereo_short.wav")
convoll=sf.Mix(
convoll,
sf.Pcnt15(sf.DirectRelength(convoll,0.2)),
sf.Pcnt15(sf.Raise(sf.DirectRelength(convolr,0.2),2))
)
convolr=sf.Mix(
convolr,
sf.Pcnt15(sf.DirectRelength(convolr,0.2)),
sf.Pcnt15(sf.Raise(sf.DirectRelength(convolr,0.2),2))
)
convoll=sf.Normalise(sf.Saturate(sf.Normalise(convoll)))
convolr=sf.Normalise(sf.Saturate(sf.Normalise(convolr)))
wleft =reverberate(left,convoll)
wright=reverberate(right,convolr)
left=sf.Normalise(sf.MixAt(
(sf.Pcnt70(wleft),10),
(sf.Pcnt10(wright),40),
(sf.Pcnt20(left),0)
))
right=sf.Normalise(sf.MixAt(
(sf.Pcnt70(wright),10),
(sf.Pcnt10(wleft),40),
(sf.Pcnt20(right),0)
))
sf.WriteFile32((left,right),"temp/temp_post.wav")
(left,right)=sf.ReadFile("temp/temp_post.wav")
left = compress(left,0.95)
right = compress(right,0.95)
sf.WriteFile32((left,right),"temp/temp_post_post.wav")
shutdownConcurrnt()
First the dirty! Why 'execfile("patches/python/concurrent.py")' The answer is that I could not be bothered to set up sys.path or the class path correctly - me bad :( [I have fixed it in later patches]
Now for the Random Walk code:
def randWalk(value,size,uBound):
value = float(value)
size = float(size)
uBound = float(uBound)
r=random.random()
r=math.floor(r*size)-math.floor((size/2.0))
value+=r
if value<1:
value=2
elif value>uBound:
value=uBound-2
return value
def randWalk3(value,uBound):
return randWalk(value,3,uBound)
The core concept behind the piece is constraining randomness to give patters which shift around slowly forming shape and movement in the piece. Here we see a few key points. Working with Random numbers requires a close interaction between integer and non integer numbers. randWalk take an number (assumed to be an integer) and moves it randomly up or down. However, the maximum distance it can move is fixed by the size parameter. The maximum value it can reach is fixed by the uBound parameter and the minimum is 1. This causes the 'random walk' effect that the music is based upon. randWalk3 is simply a helper function (I prefer this to default parameters in some cases as it is more explicit).
if l>beat*2:
iPitch=(pitch+pPitch)/2.0
pos=beat/8
signal1=sf.Slide((0,iPitch),(pos,pitch),(l,pitch))
signal2=sf.Slide((0,iPitch),(pos,pitch*2),(l,pitch*2.02))
signal3=sf.Slide((0,iPitch),(pos,pitch*3),(l,pitch*3.03))
else:
signal1=sf.SineWave(l,pitch)
signal2=sf.SineWave(l,2*pitch*1.003)
signal3=sf.SineWave(l,3*pitch*1.005)
The above piece of code is interesting as it alters note articulation based on note length. Short notes will have the same pitch throughout. However, longer notes will have a short 'slur' or 'slide' between them by bending the start of the next note to the average to the two.
We can also see here that each note it made from 3 tones. However, what we hear in Valley is very much more harmonically rich than that.
envelope= sf.NumericShape(
(0,0),
(a,1),
(a+d,0.75),
(a+d+s,0.25),
(a+d+s+r,0)
)
sat=(20-pitch/1000)
if sat<1:
sat=1
def doSat(sigIn):
temp=sf.NumericVolume(sf.Multiply(sigIn,envelope),sat)
return sf.Normalise(sf.Clean(sf.Saturate(temp)))
signal=sf.Mix(
doSat(signal1),
sf.DB_6(doSat(signal2)),
sf.DB_15(doSat(signal3))
)
The addition of harmonic complexity is done with the above code. First we create a standard ADSR envelope. Then we work out an number related to pitch which will be used to control the amount of harmonic richness to add. The reason to base it on pitch is that physical instruments tend to have more harmonic in their lower registers and so mimicking this mathematically produces sounds which are more interesting to listen to.
@Override
public double getSample(int index)
{
double x = getInputSample(index);
double y = x >= 0 ? x / (x + 1) : x / (1 - x);
return y;
}
The above is the Java (remember that audio processing heavy work in Sonic Field is done in Java not Python). It is a rather magical formula because it is so simple and yet so effective. It simply forces any value in the incoming signal to fit between 1 and -1. It does this by asymptotically crushing the signal as it approaches 1 or -1.
| X and X/(X+1) |
I came up with the idea of using this as a audio processor (strictly a wave shaper) one evening whilst working in Cambridge a couple of years ago. It is so simple and yet so effective, I could not believe my luck in thinking of it (I was dreaming of complex polynomials and logs and things). We can see that to begin with (X near 0) X and X(X+1) are similar but as X grows the processed wave bends over to approach 1 (and -1 for the X/(1-X) version for negative numbers). As a result, the wave form is distorted to become closer to a square wave. This add odd harmonics. The larger the amplitude of the incoming wave the more the distortion and the greater the addition of harmonics. A sine wave a large magnitude entering the wave shaper will come out as a rounded square wave.
The effect of greater amplitude -> greater harmonic content also mimics natural instruments. By using the saturate processor after the application of an envelope we make the harmonic content follow the envelope just as it does with - for example - a Sax where the louder the note the 'brighter' it sounds.
The link between pitch and harmonic content is performed the same way:
def doSat(sigIn):
temp=sf.NumericVolume(sf.Multiply(sigIn,envelope),sat)
return sf.Normalise(sf.Clean(sf.Saturate(temp)))
We use the saturation processor on the output result of setting the over all volume (amplitude) of the signal by the variable sat. sat is bigger for lower notes and so amplitude will be bigger and so the harmonic content larger.
Note:
- sf.Clean removes higher frequencies using a special finite impulse response filter to avoid build up of those frequencies. This prevents further processing causing harmonics of high frequencies getting so high the alias.
- sf.Normalise removes any DC from the signal and sets the maximum excursion to 1 by scaling the whole signal. By DC I mean, the sum of all the samples in the signal is the DC component. Build up of DC is a constant problem in digital processing which does not happen in analogue as the capacitors used to link circuits automatically remove all DC.
Finally for this section: why three signals? I leave that up to you to think about.
Next - resonance and body sounds
hf=sf.Clip(sf.NumericVolume(signal,3))
r1=fixSizeSat(sf.RBJPeaking(hf,pitch*1.3,0.5,85))
r2=fixSizeSat(sf.RBJPeaking(hf,pitch*2.1,0.5,85))
r3=fixSizeSat(sf.RBJPeaking(hf,pitch*2.9,0.5,85))
When a real instrument is played it shakes. For strings the shanking in part of the projecting of the sound. For brass, it produces a percussive timbre on top of the fundamental sound of the instrument. In the patch fragment above, I am attempting to mimc the effect of such shaking. This is done by passing the signal into infinite impulse response filters which are set to near resonance. Any signal passed into them which contains frequencies near to their resonant frequency will cause them to ring.
The 'near to their resonant frequency' is important. They will not resonate if signal is passed in which does not contain the required references. We can see here that I have not set their resonant frequencies to those of the notes so how will they resonate? The trick is in the sf.Clip. This hard limits signals so that if a sample goes above 1 it is set to 1 and if it goes below -1 it is set to -1. That hard limiting sprays frequencies all over the spectrum (think electric guitar fuzz). The resonators can pick up some of that sprayed frequency and resonate form it. Because the clipping will be dependant of amplitude of the signal the resonance will as well, which again, is the way physical instruments tend to work.
In my next post I will discuss compression, reverberation and well the Sonic Field - that for which Sonic Field was first created.
Tuesday, 18 February 2014
Valley Of The Sythons - Complex Music Generated From Python
And so it continues - Python has transformed Sonic Field.
SFPL was deliberately simple to try and force Sonic Field to be declarative. However, I have become ever more interested in the details of sound when declaration no longer cuts it. Valley Of The Sythons breaks new ground for me because the articulation of each of the notes is dynamically altered to fit in the context of the note before it.The approach is simple in this case as it is a first step in with approach. However, the logic which add a slur (sorry for the language, but it started pout as a wind player so that is the word for me) from the direction of the previous note is a note is beyond two beats in length.
In a similar vein, the constrained random walk logic in Valley Of The Sythons is more sophisticated than in my previous pieces (Hall Of Chimes for example).
An unexpected benefit of using Jython is the control language for Sonic Field has been better memory management and more control over the memory/thread balance. Because garbage collection of references in Python is reference countered, and thus deterministic in execution graph space, Synthon tends to clean up after it's self better than SFPL did. This also tends to mean restricting the pool size of the executor reduces memory pressure in a predictable way.
Here is Valley Of The Sythons:
Valley Of The Sythons
And here for comparison is Hall Of Chimes:
Hall Of Chimes
Sunday, 16 February 2014
Parallel Processing In Sython
![]() |
| Pythons are water creatures (or is that Anacondas?) Oh well - here is a random picture of a river. |
This all goes back to Sonic Field which before porting to Jython used a command called Do. This took a closure, executed it and forwarded a future. A Do task would execute in parallel to the rest of the program until such time as it's result was required. By making retrieving the result from a future part of the dereferencing of variables, the Do semantics approach was dead easy to use.
- Define a task just like any other piece of code, just wrap it in a closure
- Pass the closure to the executer
- Return a future
- Automatically wait for the future to return its result when we need it, not when we created it
Well, pretty much the same thing can be done in Jython using the standard Executor/Future features of the JDK. Here is the guts of the required Python code (which heavily borrows form the Jython docs - thanks).
import threading
import time
from java.util.concurrent import Executors, TimeUnit
from java.util.concurrent import Callable
SF_MAX_CONCURRENT = 16
SF_POOL = Executors.newFixedThreadPool(SF_MAX_CONCURRENT)
class sf_callable(Callable):
def __init__(self,toDo):
self.toDo=toDo
def call(self):
return self.toDo()
def sf_do(toDo):
task=sf_callable(toDo)
return SF_POOL.submit(task)
from java.util.concurrent import TimeUnit
def shutdown_and_await_termination(pool, timeout):
pool.shutdown()
try:
if not pool.awaitTermination(timeout, TimeUnit.SECONDS):
pool.shutdownNow()
if (not pool.awaitTermination(timeout, TimeUnit.SECONDS)):
print >> sys.stderr, "Pool did not terminate"
except InterruptedException, ex:
# (Re-)Cancel if current thread also interrupted
pool.shutdownNow()
# Preserve interrupt status
Thread.currentThread().interrupt()
def shutdownConcurrnt():
shutdown_and_await_termination(SF_POOL, 5)
The key is that all functions in Jython are actually closures which can be executed. To take advantage of this we wrap the closure in a Callable object. If we just execute the closure directly it is interpreted as a Runnable and the .get of the Future returns null. Wrapping in Callable solves this.
class sf_callable(Callable):
def __init__(self,toDo):
self.toDo=toDo
def call(self):
return self.toDo()
Now we make a simple function which does the wrapping and creates the future:
def sf_do(toDo):
task=sf_callable(toDo)
return SF_POOL.submit(task)
sf_do will return a Future object. To get the result of the task being executed we need to call .get() on the Future. That can be done by hand in Python. For the Sonic Field code, all objects coming in from Python into the Java audio processor code go through a specialise casting class. This simply check to Future objects and calls .get() on them. Thus, the conversion from Futures to their returned values is transparent. This is also the place that the transparent swapping in of swapped out audio signals happens.
public static Object checkAutoTranslation(Object o) throws SFPL_RuntimeException
{
if (o instanceof SFMemoryManager) try
{
return ((SFMemoryManager) o).readInObject();
}
catch (ClassNotFoundException | IOException e)
{
throw new SFPL_RuntimeException(Messages.getString("Caster.6"), e); //$NON-NLS-1$
}
if (o instanceof FutureTask)
{
FutureTask doer = (FutureTask) o;
try
{
Object d = doer.get();
return checkAutoTranslation(d);
}
catch (Throwable t)
{
throw new SFPL_RuntimeException(t);
}
}
if (o == null)
{
throw new SFPL_RuntimeException(Messages.getString("Caster.12")); //$NON-NLS-1$
}
return o;
}
So code can pass around values which might be signals, futures which produce signals, swapped out signals or even futures which will produce swapped out signals and all the necessary dereferencing happens transparently. OK - so how do we use this technique? Here is an example Sython script:
import random
execfile("patches/python/concurrent.py")
def fixSize(signal):
mag=sf.MaxValue(signal)
return sf.NumericVolume(signal,1.0/mag)
def fixSizeSat(signal):
return fixSize(sf.Saturate(fixSize(signal)))
def saturatedNode(pitch,a,d,s,r,v):
def saturateNode_():
l=a+d+s+r
signal1=sf.SineWave(l,pitch)
signal2=sf.SineWave(l,2*pitch*1.003)
signal3=sf.SineWave(l,3*pitch*1.005)
envelope= sf.NumericShape(
(0,0),
(a,1),
(a+d,0.75),
(a+d+s,0.25),
(a+d+s+r,0)
)
sat=(20-pitch/1000)
if sat<1:
sat=1
def doSat(sigIn):
temp=sf.NumericVolume(sf.Multiply(sigIn,envelope),sat)
return sf.Normalise(sf.Clean(sf.Saturate(temp)))
signal=sf.Mix(
doSat(signal1),
sf.DB_6(doSat(signal2)),
sf.DB_15(doSat(signal3))
)
signal=fixSize(signal)
hf=sf.Clip(sf.NumericVolume(signal,3))
r1=fixSizeSat(sf.RBJPeaking(hf,pitch*1.3,0.5,75))
r2=fixSizeSat(sf.RBJPeaking(hf,pitch*2.1,0.5,75))
r3=fixSizeSat(sf.RBJPeaking(hf,pitch*2.9,0.5,75))
signal=sf.Mix(
sf.DB_6(signal),
sf.DB_1(r1),
sf.DB_4(r2),
sf.DB_6(r3)
)
signal=sf.Clean(sf.NumericVolume(signal,v))
envelope= sf.NumericShape(
(0,1),
(a+d+s+r-125,1),
(a+d+s+r,0)
)
print "Returing from do task"
return sf.Multiply(envelope,signal)
return sf_do(saturateNode_)
all=[sf.Silence(100)]
for x in range(12, 32):
signal=saturatedNode(math.pow(2,x*0.325),125,500,1000,2500,1)
print "All:" + all.__str__() + " , " + "Signal: " + signal.__str__()
all.append(signal)
all=sf.Concatenate(all)
random.seed(0.128)
all=sf.Normalise(all)
sf.WriteFile32((all,all),"temp/temp.wav")
shutdownConcurrnt()
Let's have a look at the definition of saturateNode
def saturatedNode(pitch,a,d,s,r,v):
def saturateNode_():
I create a closure immediately which closes around the contents of the function. This means the closure can do exactly what the function would do with exactly all the same names; however, it can do it anywhere in time or space. We have taken the function and detached its work into a separate, self contained task.
return sf.Multiply(envelope,signal)
return sf_do(saturateNode_)
At the return end of the function, I return from the closure as though it were the outer function and return sf_do(<
So, if we do anything which would cause the setting of a local variable, the variable will be reified.
n=4 def y():
n=5
z=y
z()
print n
z has the value of the closure y. We execute it and set n. In this case the result is 4 because n has been reified to a local variable. If we just dereference the variable and update the thing it references then we are accessing the external scope:
n=[]
def y():
n.append("dog")
z=y
z()
print n[0]
This will yield dog because we are not creating a local variable it is accessing from the outer scope. This means we MUST NOT DO THIS in closures used for tasks. Because Python has no way of enforcing stuff at compile time (no compile time) we just need to be careful to reify all local variables and be patient if we get bugs by forgetting to do so :(
Subscribe to:
Posts (Atom)
