Week 11
- Practical 1 - Audio Arts - Mixing [1]
- Practical 2 - Creative Computing - Supercollider (8) [2]
Here is the actual sound of a single note that the SynthDef's produce
This is the result PBind returned
I somehow don't think this is the sound I was looking for.
// Week 11
(
// Modulator
SynthDef("Modulator",
{
// Arguments
arg busout = 30,
density = 8
;
// Variables
var modulator
;
// Modulator
modulator = Dust.kr(density)
;
// Output
Out.kr(
bus: busout, // Modulator out control bus 30
channelsArray: modulator
)
}
).store;
// Carrier
SynthDef("Carrier",
{
// Arguments
arg busin = 30,
busout = 20,
freq = 8000,
dur = 2,
leg = 2
;
// Variables
var carrier,
modulator
;
// Modulator
modulator = In.kr(busin, 1);
//Carrier
carrier = SinOsc.ar(
freq: freq,
mul: modulator // Modulator in on bus 30 performing AM on Carrier
)
;
// Envelope
carrier = carrier
*
EnvGen.kr(
Env([0,0.6,1,0], [dur,0.1,0.01]), doneAction: 2
)
;
// Output
Out.ar(
bus: busout, // Sending out audio bus 20
channelsArray: carrier
)
;
}).store;
// Effect
SynthDef("Delay",
{
// Arguments
arg busin = 20,
busout = 0,
mdtime = 0.2,
deltime= 0.2,
dectime= 6
;
// Variables
var delay,
carrier
;
// Modulated Carrier
carrier = In.ar(busin, 1);
// Filter
delay = CombC.ar(
in: carrier,
maxdelaytime: mdtime,
delaytime: deltime,
decaytime: dectime
)
;
// Output
Out.ar(busout, delay)
;
}).store;
)
Synth("Modulator", addAction: \addToTail);
Synth("Carrier", addAction: \addToTail);
Synth("Delay", addAction: \addToTail);
(
// Sequencer
Pbind(
\Instrument, "Delay",
\dectime, Pseq([6, 5, 4, 3, 2, 1, 0.5, 0.25, 0.125, 0.0612], inf)
).play;
)
- Music Technology Forum - Presentation - Presentation by Stephen Whittington [3]
He started off explaining that before mass communication and travel, humans lived in small scattered groups. Cultures were isolated, and there were geographical boundaries. Today, thought is conducted on a global scale, and travel that used to take months, can now only take a few hours. Stephen is interested how this thought has translated to musical interaction. With communication protocols such as VOIP (Voice Over Internet Protocol) that work with the internet, “Distributed Music” is now a global phenomena.
Stephen defines Distributed Music as musicians performing together, but not in close proximity with each other. The thought that we are all on the same ‘Spaceship', is a good example of global thought; Stephen mentioned a quote from someone who said something on the lines of this, but I can’t remember who.
Stephen’s other main interest lie in that of vocoding, which ties in to his interest with the human voice and the expression of ‘utterance’.
He presented some of his compositions that used both of these technologies. The one composition that stuck in my mind was, “X is Dead”. With this piece he played some audio through a speaker connected to the bottom of a piano which is turned resonated its strings. At the same time, he also played the piano and spoke a series of words.
The other piece I found interesting was his involvement with “Distributed ‘synchronicity’ experiments”. The sonic result of this I thought sounded similar to a piece from the Dues Ex – Invisible War soundtrack. I think the fantastic “Alexander Brandon” had some part in creating this soundtrack. The soundtrack itself is mostly ambient with some ethnic instruments at times. You can download it for free here. The Deus Ex 1 soundtrack can be downloaded here.
I hear the 2nd years get to have a lecture with him every week on the human voice. I wish I had attended this as the human voice is also one of my interests. That’s the thing with the Tech course; it changes every year so there is usually something new to learn about other year levels even if you are a 3rd year. I wish all lecturers were as cool as Stephen is about sitting in on their classes… well most lecturers of whom I’ve met are.
- Music Technology Forum - Workshop - NA
- References
- [1] Grice, David. 2006. Practical on Live Recording. University of Adelaide, 23 May.
- [2] Haines, Christian. 2006. Lecture on Supercollider . University of Adelaide, 25 May.
- [3] Tim Swalling. 2006. Presentation on Tim Swalling's projects. University of Adelaide, 25 May.
2 Comments:
There are a couple of things wrong with your Pbind code. Firstly, use all lower cases for event keys (i.e /instrument, not /Instrument). Secondly, you don't need to instantiate synths (/addToTail or whatever) if they are controlled by your Pbind, it does this automatically. I would advise that you 'Pbind' the carrier, not the effect, otherwise you may end up with the 'default tone', which it sounds like you have in your second audio sample. If you want to control the effect you can declare two Pbinds and execute them simultaneously:
a = Pbind(/instrument, "Carrier",
// carrier sequencing
// parameters etc.
)
b = Pbind(/instrument, "Delay",
// delay sequencing
// parameters etc.
)
Add some behaviour where the comments are, then select all and execute. Make sense?
Martin, thanks for the help with the code. I'll definitely revisit this code and consider your comments.
It's less than a week away and my Major (Supercollider) is due, so I must understand how this works.
Post a Comment
<< Home