Week 10
- Practical 1 - Audio Arts - Mixing (1) [1]
Step:
- Trim Files.
- Organise applause for the start and end of the piece (for live performance).
- Label each track on desk.
- Make sure the fader for each track is at ‘0’ amplitude, and panned centre.
- START the mixing.
Group all the drums on the drum kit into a ‘Drums’ group. Depending on the style of music, you might want apply gates, EQ’s, or clean up noise between drum hits. EQ is useful to pull back on any resonance individual drums might have. You’d usually start with the kick, and then the snare. The overheads can be paned left and right, and the other drums panned according the ears of the drummer.
We brushed over the Bass, Piano, and Vocals as we didn’t have enough time to go into detail. David emphasised the fact that stereo mixes should also sound good in mono and urged us to test our mixes throughout to check for this. He also told us to monitor at low volume to avoid audio fatigue, but also because you can usually hear a lot more detail – As I understood it, you’re brain isn’t as overloaded at a softer volume so it can process more, revealing extra detail. Finally, he suggested that at some point we listen to the mix in the hallway from outside the studio to give us a perspective of the mix in a different acoustic environment.
The experience, knowledge, and personality of David Grice is exactly what this degree needs, and I hope he can teach the students here for as long as possible.
- Practical 2 - Creative Computing - Supercollider (7)
Week 10 result (crappy) - It kinda reminds me of the periodic sound of shooting out diarrhea poo. Enjoy!
// Week 10
// SynthDef
(
SynthDef("Horror",
{
// Arguments
arg midinote, // MIdi Note
dur = 2, // Duration of Event (for use in Envelope) (NOT DONE)
leg = 0.8 // Space between start of events (for use in Envelope) (NOT DONE)
;
// Variables
var bus = 21, // Bus 21
i, // Instrument
i_modfreq, // Instruments Modulating Frequency
filtercutfreq, // Cutoff Frequency of Filter
out // Output
;
// Instruments Modulating Frequency
i_modfreq = Saw.ar(
freq: 60,
mul: 0.1
)
;
// Instrument
i = LFCub.ar(
freq: midinote.midicps // Carrier Frequency
+ i_modfreq, // Modulating Frequency
mul: 0.1 // Overall Amplitude
)
;
// Envelope
i = i * EnvGen.kr(
Env.new([0,1, 0.3, 0.8, 0], [dur*leg, dur*leg, dur*leg, dur*leg],'sine'),
doneAction: 2
)
;
// To Bus 21
Out.ar(bus, i
)
;
// Resonant Low Pass Filter Cutoff Freq
filtercutfreq = FSinOsc.kr(
freq: leg*1000,
mul: XLine.kr(
start: 10000, end: leg*50, dur: dur,
doneAction: 2
)
)
;
// Bus 21 passed through a Resonant Low Pass Filter and assigned to 'out' variable
out = RLPF.ar(
In.ar( // Signal to be Processed
bus), // Bus 21
filtercutfreq // Cutoff Freq
)
;
// 'out' variable to Output 0 (Left) and 1 (right)
Out.ar([0,1], out
)
;
}
).load(s);SynthDescLib.global.read
)
(
a = Prand(#[10, 66, 65, 63, 47, 2, 65, 63, 61], inf).asStream;
Pbind(
\instrument, "Horror",
\midinote, a.next,
\dur, Prand(#[8, 4, 3, 2, 1, 0.5, 0.25], inf),
\leg, Prand(#[6, 5, 4, 3, 2], inf)
).play;
)
- Music Technology Forum - Presentation - Presentation by Robert Chalmers [2]
He started off by explaining what copyright is, what it covers, and how long it lasts for. He also talked about lyrical, moral, musical, and personal rights, and how they can be exercised in different situations. He talked about infringement and fair use, and how “fair use” only really applies in America. Finally, he skimmed over p2p file sharing systems, the iPod, and how the law views both these things, before finishing off with questions and answers. The questions and answers were equally as interesting and educational as the lecture part of the session. I found the whole session to be thoroughly enjoyable, educational, interesting, and worthwhile.
- Music Technology Forum - Workshop - Workshop on Mr. Bungle, Stockhausen, and My Bloody Valentine [3]
We then listened to Stockhausen’s, “Hymnen”. This piece was based around picking up noise with a shortwave radio. It also contained what sounded like some tape technique, especially near the end with the German word collage. Overall it was a very inspirational piece that reminded me of horror films in certain sections.
Lastly, we listened to “To Here Knows Web”, by My Bloody Valentine. To me I thought this piece sounded like a pop tune with some of Alex Carpenters ‘noise’ music layered over the top. The combination of these two together didn’t really appeal to me.
- References
- [1] Grice, David. 2006. Practical on Mixing. University of Adelaide, 16 May.
- [2] Robert Chalmers. 2006. Lecture on Copyright and the Law. University of Adelaide, 18 May.
- [3] Harris, David. 2006. Workshop on Mr. Bungle, Stockhausen, and My Bloody Valentine. University of Adelaide, 18 May.
1 Comments:
i kinda thought that the mr. bungle tunes would make good listening for circus freaks or carnys. real kinda sick and twisted music, in a freakish and colourful way.
take it easy bro
Post a Comment
<< Home