my website stylesheet -->

New Harmony

Recently I made a discovery. For a while I’ve been working on new ways of looking at harmony, especially with respect to analysing one’s own harmonic usage. Obviously listening is usually the first step, but I was dissatisfied with the way that we can describe different levels of dissonance or consonance in harmony. For me dissonance is a sliding colour scale, currently purely subjective and unquantifiable. Since this is subjective and can never be anything more than that, developing an objective method for defining dissonance could only ever be useful on a personal scale. Current descriptions of dissonance range from ‘dissonant’ or ‘consonant’ to specific author’s styles ‘Messiaenic harmony’ (although this could mean many things) and to the many adjectives normally associated with lay-appraisal of atonal or serial music (‘brash’ etc., usually pejorative).

I think it is necessary to look beyond this, and to think about intervals, major and minor harmony, scales, dodecaphonicism, in a new light. One where the relationships remain constant for harmony across all styles. It’s useless to describe Boulez’ music in terms of major and minor, as with Ockeghem but for completely different reasons.

So, he comes to the harmonic series. This is the one constant in music, present in all pitched instruments (in fact the basis of how we recognise pitch), and very possibly the key to how our ear is able to distinguish two separate pitches in a chord, even when they are almost in unison. For my Masters I did some research into dissonance, and made some inroads into how pitches interact, and for example why an octave is considered consonant by most people and why a minor second is dissonant. Basically, although inconclusive, octaves share most harmonics with each other, apart from one per octave. Minor seconds, on the other hand, share very few, at least until many octaves higher in the harmonic series, when the harmonics become less than a semitone. I set about the work of providing a theory of this, which is still in progress.

More recently I came across (whilst reading Michel Chion’s translation/transmogrification of Schaeffer’s Traité) Edmond Costère’s Lois et Styles des Harmonies Musicales. Costère’s book describes his reexamination of harmony from the perspective of basic rules of acoustics, primarily the harmonic series, and provides charts of analysis of scales from this perspective, an analysis of major harmony, it is disarmingly simple, and was just as easily dismissed at the time of publication. But it is quite obviously before its time, before Spectralism appeared and when people were still grappling with the Highest Art preoccupations of whether harmony needed reinventing or not. Costère is not suggesting we restyle everything, but in fact to reexamine the way we look at harmony, that there is a bigger picture and a simpler but more comprehensive method of analysis of functional and non-functional harmony, that spans the gaping abyss between tonal harmony and serial music, between spectralism and new complexity.

What is less convincing for me is his explanation of the roots of diatonic minor harmony, which consists in inverting the harmonic series in order to find the minor third. Instead for me at this early stage I see minor harmony as a séquelle from the modes; diatonic minor is quite easily accounted for as the aeolian or dorian medieval modes, shoehorned into functional harmony (sharpening of the 6th/7th degrees). Although, this doesn’t fit it in quite so neatly into Costère’s hypotheses.

Currently, this is an unfinished story. I have not finished Costère’s tome, nor the other equally outrageously titled Mort ou Transfigurations de l’Harmonie, which I have on loan from the British Library. I intend to assimilate, modify and bring his methodologies for analysis and appraisal of harmony into the 21st Century. It will become a tool for analysis applicable to most systems of harmony (diatonic, dodecaphonic, quarter-tone), and possibly may influence the way I compose, harmonically speaking. This has, of course, nothing to do with rhythm, timbre, structure or form, thus leaving one free to compose the same music but aware of another perspective on the harmony that they are using. Suffice to say that for me this is a breakthrough, rather late in the day, but it has answered some questions that I have long posed (those of a quantitative scale of dissonance and alternative hierarchy of tones) and equally triggered others (was Costère just a blithering fool with a prejudice against established rules of harmony?).

Tags: ,

ThingNY

I’m having a piece played as part of ThingNY’s SPAM Concert on the 19th December 2009. In New York!

The concert starts at 7pm New York time, which is midnight (00:00-02:00) Saturday 19th December if my calculations are correct.

The concert with be streamed live here, so tune in if you can. Click here to add this to your calendar.

thingny

Overhaul

This site has just had a major overhaul, and been upgraded to work completely on Wordpress.

There are new pages for my catologue of works – Music; Ninnananna – with pictures from performances and information; an About page with my contact details; this blog with updates on my research; and the Events page upcoming performances.

Arduinos, MIDI and real apps

Since it’s really been a while since I posted here, I’m going to publish my research on getting an Arduino based interface to talk directly to something else via MIDI. This project could easily be expanded to more complex solutions (i.e. not just two momentary switches), could easily use OSC, channel MIDI data across a network, have a more complex user interface. The point with this stage in the project was to get a framework to build new projects from.

When I first started working with Ruby and Cocoa, the RubyCocoa project was pretty elementary, but many leaps and bounds have been made. Thanks go out to bleything and and the RubyCocoa team without whose wonderful work this would not be possible.

Making an interface from scratch with the Arduino at its core

Equipment needed:

  • arduino (diecimila or equivalent)
  • wire + wire cutters
  • breadboard
  • selection of resistors (10k preferable)
  • switches (any sort, I used momentary)
  • computer – mac, linux or pc (mac preferable)
  • box of some sort – optional
  • soldering iron – only necessary for finishing the project

Inside the FootStompBox

# Wire a switch – one side to ground and the other to digital input 6. Use the breadboard.
# Put a resistor between the side of the switch connected to ground and +5v.
This is called a pullup resistor and makes the current default to ‘on’ or +5v when the switch is closed. When the switch is open, the voltage remains at 0v.

If you want additional switches, follow the two steps above making sure you use a new resistor each time.

Difficult bit: find a nice box and glue the whole lot into it and plug in a usb cable.

FootStompArduinoBox

Getting your computer prepared to talk to the Arduino

If you are comfortable with using the terminal, and want a one-step install for the various packages required for this tutorial, try:

MacPorts

To install: go to the MacPorts website and install using the installer there.
Check everything is working by firing up a terminal and typing

port version

which should return

Version: 1.710

Preparing Ruby

All the below are necessary before continuing

Installing (upgrading) Ruby
Ruby is already included in MacOSX, but for compatibility reasons, it’s best to upgrade. If you’re happy with your installation, just continue as is until you come up against any errors. Please note the Ruby included with 10.4 is very old, and possibly broken.
Fire up a terminal (if it isn’t already open from above) and type

sudo port upgrade ruby

Rubygems — required to use the below libraries
Fire up a terminal (if it isn’t already open from above) and type

sudo port install rb-rubygems

MIDIator — Ruby MIDI library
MIDIator allows us to use Ruby to easily create MIDI messages in a simple and comprehensible fashion
Fire up a terminal (if it isn’t already open from above) and type

sudo gem install midiator

Serialport — Ruby Serial Port library
This is installed by default as part of Ruby, but best to upgrade:

sudo gem upgrade ruby-serialport

Easy! Just sit back and watch incomprehensible lines of text scroll by.

Arduino code

The Arduino itself requires code to run. This tells the Arduino what to do with incoming and outgoing data. The language is called Wiring.

Make sure you have the Arduino programming environment installed (from http://arduino.cc)

Use the following code:
To explain, the first block initialises the pins we will use.
The setup() method initialises the pins and serial connection and tells us that they are sending data in to the Arduino.

The loop() method reads the pins every cycle, stores the data in variables and decides what to do with it. In this case, it sends a different value to the computer if the pin is up or down. The swi variable checks if it’s already been sent, and prevents doubling the ‘note on’ value. i.e. it can’t send a note off before it’s sent a note on and vice versa.

 /*
 sends serial data over usb to be converted by ruby to MIDI..
 */
int inPin1 = 6;   // choose the input pin (for a pushbutton)
 int inPin2 = 7;
 int val1 = 0;     // variable for reading the pin status
 int val2 = 0;
 boolean swi1 = false;
 boolean swi2 = false;
void setup() {
 Serial.begin(9600);
 pinMode(inPin1, INPUT);    // declare pushbutton as input
 }
void loop(){
 val1 = digitalRead(inPin1);  // read input val1ue
 val2 = digitalRead(inPin2);
if (val1 == HIGH && swi1 == false) {         // check if the input is HIGH (button released)
 swi1 = true;
 Serial.println(89, DEC);
 delay(100);
 }
if (val1 == LOW && swi1 == true){            // check if the input is low and it's just been high
 swi1 = false;
 Serial.println(90, DEC);
 delay(100);
 }
if (val2 == HIGH && swi2 == false) {         // check if the input is HIGH (button released)
 swi2 = true;
 Serial.println(91, DEC);
 delay(100);
 }
if (val2 == LOW && swi2 == true){            // check if the input is low and it's just been high
 swi2 = false;
 Serial.println(92, DEC);
 delay(100);
 }
}

Building a simple communication script in Ruby

Download the RubyMIDI.zip file and look in the lib folder at usbchecker.rb. This checks to see if the Arduino is present. In short, OSX creates a list of all the USB devices on your computer at /dev/. This script checks for one in the correct syntax for an Arduino, and passes it back to our main program.

Look in the main folder at BasicMIDI.rb. This contains all the information to communicate with the Arduino and change it to MIDI data.  The require functions at the top load in the libraries we installed earlier – rubygems, midiator, serialport and the file we’ve just looked at, usbchecker.rb. The first paragraph runs the usbchecker.rb and passes the identity of the Arduino back and initialises it (turns it on and starts communicating with it).

The next paragraph creates a MIDI device with Midiator and tells it to send all MIDI data to CoreMIDI on OSX, also known as the IAC Driver (Load up Audio MIDI setup and have a look).

The whole of the next section is a bit boring, and merely consists in grabbing data from the serial port and converting it into a meaningful format rather than the incomprehensible rubbish that comes across normally. sp.getc.chr grabs a character (getc) from the serial port (sp), and converts it into a real character (chr). The next loop puts it into a string.

Then, if it has something, it decides which one it’s received from the Arduino (see above that we’re sending different numbers according to what’s happening) and sends either a midi note on (midi.note_on(89, 1, 100)) or note off (midi.note_off(89, 1, 0)).

The other parts are failsafes for if it receives a line-end or newline character – the Arduino sends these after each transmission as part of the Serial.println() method.

Magic, that’s all the code explained

We can run this script by opening a terminal, typing ruby and dragging and dropping the BasicMIDI.rb file into the window, then hitting return. It will fail if there isn’t an Arduino present.

Integrating your Ruby script into a fully fledged native MacOSX application

First, go and download Xcode from http://developer.apple.com and install it. This will take a while.

You’ll notice there’s another folder called RubyCocoaUSBApp which contains lots of files and folders and a file ending .xcodeproj which has our Xcode project in it. Open this, and Xcode will open the project. You’ll notice the lib folder is still there, and that AppController.rb has the same code as BasicMIDI.rb above. It’s not necessary to know the structure of the rest of the folders, just that there’s lots of necessary stuff in there that it’s unwise to touch. Just modify the AppController.rb with your code and link it into the MainMenu.nib using Interface Builder – I won’t explain here because it’ll take ages, unless people need me to? Easy peasy.

Next step: Build and Run (Command-R).
This should launch our fully fledged application, which runs when we click on the button. It will display ‘Ready’ when connected and sending MIDI.

Simply connect any MIDI client to the built-in IAC Driver on OSX and away we go.

Oh, and before I forget, here’s the fully fledged application in case you’re having problems compiling using Xcode.

Tags: , ,

Grisey – An appraisal of Tempus ex machina

Probably I should introduce this paper, because it will be familiar only to the most hardened contemporary music researcher, at least in the English speaking world. It is Gérard Grisey’s Tempus ex Machine: A composer’s reflections on musical time, from Contemporary Music Review, 2:1, pp.239–275.

Firstly I think it would be a mistake to think that this paper is about time in music. The word time, when brought up in relation to music practice, usually recalls such words as ‘tempo’, ‘rhythm’, maybe even ‘groove’. However, although Grisey starts by talking about rhythm, he’s referring to the experience of music. Jonathan D. Kramer also talks about the same thing in more detail in his book The Time of Music: new meanings, new temporalities, new listening strategies (1988). Both of these are an attempt to justify or somehow examine the difference between time as experienced in normal life (clock time) and time as experienced in music (musical time). I must say I’m not a fan of his confusing categorisation of the different types of time (the skeleton of time, the flesh of time, and the skin of time), as they are hardly as elucidating as the rest of the text.

To delve straight into the text, I’d like to reinforce an element in my thinking that Grisey raises, which I call repetition, and he calls periodicity. We are examining the same concept from different angles, mine from the ‘material’ point of view and he from the ‘rhythm’ point of view, although with a certain leap of faith we could regard them as interchangeable (rhythm being the repetition of material). I quote Grisey quoting Abraham Moles “the notion of rhythm is linked to that of expectation”, and this in turn leads us to realise that a framework has to be established in order to perceive rhythm. Repetition is that framework – if we repeat a bar twice, we expect it a third time. If we have three bars of material and we repeat the first two, we will expect the third. If we play quavers in 4/4 for 10 bars and switch to crotchets, we gain the listener’s attention when we change. Grisey returns to the concept of periodicity at the end of the paper:

“(a) The repetition of an event helps and sometimes forces it to be memorized (cf. what has been said on periodicity).
(b) The degree of salience of a sound of a sequence can help it to be memorized. A violent, unexpected sound, for example, can leave a lasting trace. This is the very purpose of contrasts.
(c) To the contrary, in the composition of certain types of processes, the difference between one event and the next is virtually nil (the degree of pre-audibility tends towards infinity).

At its most extreme, if this continuity is maintained thoughout the duration of a work, it is virtually impossible to memorize anything…

(d) The point of juncture between ordinary time and musical time is particularly salient. The beginning and end of a piece are strategic points in our memory.”

How many times have we sat through a piece that had beautiful material in, but an hour after the concert was completely lost from memory? Sometimes, as a composer, it is forgotten that the listener may only hear the piece once. We’d be very lucky if they sought out a recording of the piece (if one was even available), and even then there is a limited amount of listens a particular person is going to dedicate to it. What I am getting at is that there is a limited (set) amount of time available to develop and demonstrate your material. We are also assuming that our dutiful listener is even paying attention the whole time through the performance, that it’s not boring them or that they’ve even had to sit through five other difficult, new contemporary music pieces.

Coming back to periodicity, Grisey outlines his composition Périodes, in which he examines fuzzy periodicity. This is the idea of a constantly fluctuating pulse, determined by (statistically-speaking) a sort of normal distribution around a fixed pulse. I challenge this notion as a compositional parameter. A performer can never absolutely determine the time between actions, only estimate. So even the strictest tempo from a performer constantly fluctuates around an ideal tempo. So what Grisey is suggesting is already part of performance. True, what he is really saying is that he wishes to investigate this phenomenom, but the truth is that the contrast between the intentional fuzzy periodicity and real performer leeway is much more subtle than he imagines.

In the acoustic world nothing is exact. Everything is an approximation—even frequencies, partials, rhythms, tunings, scales etc. In the electronic world, introducing this human element—the almost random/approximate/fuzzy—becomes a lot of hard work and is not intuitive. Often we have to try to approximate live performance by reproducing certain elements of approximate rhythm, timbre etc., and even more frequently is this element completely ignored. The perfection of electronic sound is immediately identifiable if not directly describable. We can listen to a piece of music and identify the parts that have been sequenced (read: never been near an instrument) and those which are recorded from real life. Likewise the ear will immediately notice an exact loop and be less fatigued by an indirect repetition. That means more mileage out of the same material: not boredom but a chance to convey our point more clearly.

To recapitulate or not to recapitulate. Recapitulation has been a mainstay of composition for centuries, for the reason that the listener immediately identifies with and gets a (small) sense of achievement from having identified material that was presented earlier. This immediately links the composer, performer and listener in a chain of understanding, and probably more importantly, communication—even on the most basic level. For me it seems that without this basic premise the music has to be stylistically immediately identifiable. That is, the audience is going to the performance knowing the way in which you work and the boundaries of your compositional language (your ’sound’). They are prepared to be surprised, but they have a grounding upon which to base aural judgements.

Reflections on Saariaho’s writing

Having just finished Kaija Saariaho’s 1987 paper Timbre and harmony: interpolations of timbral structures, in Contemporary Music Review, 2:1, pp 93–133, I thought it best to commit some of my reactions to it.

There are some particular moments of insight, which I’ll work through in order. Firstly she cites Kandinsky: “Form is the external manifestation of inner meaning” (Vassily Kandinsky: The Spiritual in Art, 1969). Aside from the fact that musicians, musicologists and above all composers tend to take reference from out-of-date thinking in other art-forms, I think this is particularly apt, even now, as a guidance for how to approach form in music.

Too often is structure confused with form. Look at it this way; the way a piece is structured in terms of harmony, orchestration and material is completely separate from the way these elements are formed. To coin an analogy, form is the father of structure; at least in the classical sense. We have a set of boxes (possibly within larger boxes)—the form—which we fill with material—our structures. These boxes might even be predisposed towards a particular type of material. These constraints often paradoxically provided a composer with inspiration, as a kind of competition to perfect their art, in the manner of an acheiveable target.

What Kandinsky is suggesting is that there is, in fact, no box at all. Which is, in itself, obvious—there cannot be form without content. That the content shapes the form is the interesting part, because this suggests that in music the structures themselves do not hold the meaning, but instead the method in which they are arranged carries the semantic weight. Saariaho suggests that she has never referred to pre-established formal structures, and in fact it would be crazy to expect that a composer necessarily adopted forms developed directly from analysis.

Kaariaho goes on to say “Amongst familiar organizational models concerning pitch the tonal system is, in my own experience, the most effective means of suing harmony to construct and control dynamic musical forms.” and “I think, however, that using tonal functions in such a way is definitely a thing of the past. This is why the tonal systems would seem to be only a potential model for the creation of tensions through the use of pitches” and finally “…I am absolutely convinced that [tonal harmony] is an out-dated approach to the problems posed by the organization of pitch structures”. She goes to say that tonal harmony is the only way of effectively creating dynamic structures, but that perhaps it’s not necessary to do that anymore. Why do I raise this? Because I think this is an issue which has still not been satisfactorily solved.

Tonal structures are a proven, effective way of creating tension and meaningful structure in music. Serialism has left many unconvinced, in the same manner as Marxism: fundamentally sound but disastrous in practice. Musically speaking it let us down on several points: the matter of ‘octave equivalency’—notes do not sound the same in each octave; interval equivalency—a major third is not a minor sixth; set-equivalent chords are not identical sonically. Spectralism solved some of these problems by reintroducing the natural hierarchy of tones without reverting to tonal structures. Many of the issues raised with spectralism have been circumvented/solved by the advent of computer processing and analysis technologies (a contentious issue, I know), through the endless possibilities for manipulation of sound.

Saariaho sways towards investigating a hierarchy of timbre to replace tonal structures, but in my field I am swayed towards a complex appreciation of the interplay of tones. This is driven by my interest in the contradiction between the harmonic series and the system of equal temperament: two systems in use at the same time, contending for the same position. The physical irrefutability of the harmonic series leads us to appreciate the tonic–dominant–sub-dominant relationships. The dominant resolves strongly to the tonic, being part of the harmonic series of the tonic, and the modulation to the sub-dominant provides a leverage (alternate dimension?), because the tonic is a part of the harmonic series of the sub-dominant (and not vice-versa). The build-up of tension in the dominant is due to the third of the dominant chord wanting to directly resolve (up) to the tonic again, whilst this is not the case with the sub-dominant. Whilst these are very simplistic observations, it highlights one of the basic issues regarding the organisation of a hierarchy of tones and chords into a harmony, and how little we can actually categorise without resorting to a subjective use of our ear.

Saariaho also goes on to say “It is by modifying the speed of harmony’s development that harmonic tensions are created, by making harmony into a strictly controlled parameter. To achieve this, I worked on the degree of differentiation of successive chords an don the linear duration of each chord”. This is the eternal compositional tool of stasis vs. movement. Another is the level of interest generated by material. One can have very mediocre material juxtaposed by inventive (catchy, if you will) material, in order to heighten its catchiness. This is the method unconsciously suggested by thematic development, that one suggests imperfect combinations of what one has heard before, ultimately recapitulating on the initial material, satisfying the listeners’ desires. An even level of release of good material would result in a saturated work. The listeners’ ears need to be teased, like in a horror movie when the tension is sufficiently developed.

I was investigating another parallel area of interest, that of Bill Viola’s work in visual art. To describe his work here in such a short manner does not do its depth of thought justice, but he (currently) works with extremely slow video, in the manner of a very subtly animated painting. The casual viewer would assume a light-box photograph or extremely high-quality video still, but in fact it is an extremely slow video. The concept of going beyond the medium of video to question its very premise of presenting motion is one to be greatly praised. I am considering how this could be possible in music, to present a moment of stasis in a particular musical texture.

The normal way we elongate events is to literally play them more slowly, and the electronic equivalent is time stretching using a phase vocoder, preserving the pitch. Under normal circumstances the usefulness of this (without disturbing the formant arrangement of the original) is limited to twice and half the length. The factors that have to be taken into account are the numbers of bands it is split into (powers of 2) window overlap (again powers of 2) and window shape. The most low level process I have found is the Csound and Matlab implementations, which might provide a little more room to maneuver. Also band-splitting the sound file into (at least) high and low might preserve individual formants better with extreme processing.

Saariaho examined this principle in Vers le Blanc (1982), in which a single extremely slow glissando from one chord to another lasts 15′, subverting the perception of harmonic change. Leif Inge examined the same principle with 9 Beet Stretch, Beethoven’s 9th Symphony stretched to 24 hours long. There’s also John Cage’s ORGAN2/ASLSP, currently being performed in St. Burchardi in Halberstadt, in the eighth year of its 639 year performance. So the idea of performing music for a very long period isn’t new, but Cage’s doesn’t examine slow, continuous change, rather specific moments in time that have sudden changes. Also it’s not feasible to truly experience the work, because the time spent in performance for one human wouldn’t be enough to experience the enormity of the work. We can only imagine the momentous moment of change.

In Saariaho’s work, the computer is treated as an assistant to composition, not as a replacement for any part of the composition process. This is an important difference, because the conception of the work occurs far from the equipment, and is simply treated as a tool to realise the composition. Compare this with using the computer as the composition pad to realise your ideas. The ideas are beyond acoustic or electronic timbres, they are merely the ideas which Saariaho conjures in her mind, and the limitations of the tools are the only boundaries. Compare this to working within the boundaries, within the walls of a piece of software or pad of paper.

Ending with another quote, which I believe is sometime at odds with our current compositional thinking, and more in common with our belief in scientific knowledge (not to confuse this with current meta-scientific thought which purports that we are merely travelling in circles of knowledge): “…just as the universe of Newton is contained within the universe of Einstein, contemporary music, can similarly contain, in addition to other elements, all the developed knowledge of our civilization, as well as the knowledge that we have been able to acquire about other civilizations”.

Kurtág – Jelek (Signs)

This work is Op.5 1961, well before Kurtág’s works became (more) prominent in the 80s. It’s a very short affair, very short in the Webernian sense, with the longest movement being 2′25″ and the shortest 31″. It’s for solo viola and examines a range of techniques  – double stopping, portamento, pizzicato, harmonics, and a very wide range of dynamics. It’s a tour-de-force of economy in terms of material.

His insistence on using twelve tone technique removes any sense of large or medium-scale harmonic logic to the work, instead relying on microscopic moment to moment contrasts and relations. The logic behind the structure lies solely in a use of technique, that is, the only defining characteristic which holds each movement together is the use of a particular performance technique, since dynamics, pitch and rhythm change so suddenly for each gesture. The examination of a particular technique over a more extended time period is what lends each movement its character, and which holds the piece together as a whole, aside from the obvious pauses at the end of each movement. As for logical transitions, I don’t think it would make a difference if the movements were to be played in a different order, which in turn brings up the issue of music being ‘memorable’ and then again in turn ‘repetition’.

Both memorability and repetition to my consideration of music, repetition necessarily being the key to memorability, and also the path to boredom/disinterest. There’s a great chasm between a piece being absolutely unmemorable, a stream of consciousness (through-composed) and on the other hand being just one loop all the way through. Variation, development, contrast and recapitulation are all classical (tried and tested) ways of dealing adequately with this complex problem. It’s obvious which side of the chasm this piece by Kurtág is (with Reich’s It’s Gonna Rain on the other side).

Each movement is a miniature, and whilst brevity is admirable, it appears that each does not have enough space to breathe. By that I mean that there are enough rests in the work, but instead that there is not enough space given to the material to let it develop its own character, or to let it show its true colours. Analogy: it’s like having a jigsaw with a different design on each piece, each magnificent individually, but when put together are simply perceivable as a mass of detail, and each piece loses its individual characteristics. The material used in the piece could be seen as an ultra-condensed syrup (if you chose some better pitches) to create larger works.

In terms of form in the piece, I don’t get a sense of overarching structure, that the piece is going anywhere or resolving anything. This is simply due to the lack of (ostensible) return to any material. There is no tension on any scale, no ’story’, just a bland grey with a few occasional glints of gold. The piece is performed with gusto by Garth Knox, much like the other solo viola pieces in this collection.

Tags:

The sound world of the viola

How does one approach writing for viola? Especially an examination of the sounds possible on the instrument. If one was to think about this rationally, pragmatically, there is the (Platonic) concept of the instrument – as a perfect viola and performer – and one has all the possibilities of the combinations of viola, bow and two hands on any part of the instrument, striking or bowing, coupled with an infinite variation in pressure, not to mention duration of action or its variation over its course.

For example, one can tap the belly of the viola. This is a single technique. However, one can use a single finger or multiple fingers, the thumb, fingernails, pads of the fingers, flat of the fingers, palm of the hand. One can remain in contact with the belly after striking, one can make a short sharp tap, one can scratch, swipe and everything inbetween. There are many places that produce different resonances on the belly, and it depends also where the hand holding the instrument is, for example the same tap on the belly would produce a different sound were the (left) hand holding it by the scroll, neck, strings(!), top, ribs, tailpiece etc. Just within this technique, there is a potentially unlimited variety of timbre. However, in reality plenty of these sounds would appear very similar when presented in conjunction with other sounds made by the viola, or indeed other instruments, and it wouldn’t make sense to specify when two ostensibly identical sounds which are described differently appear the same in practice.

So where is the line drawn come when trying to specify the exact sound world that we’d like to describe? If I was writing a piece which examined the sounds available just from the belly of the instrument, it would make sense to specify in detail all the attributes of the sound I’d like to be produced, given that the performer is happy to perform it, and that I’ve got a suitably quiet venue for it to be performed (i.e. not a bar or a large concert hall), unless it’s going to be amplified. However, again if I’m writing for orchestra it wouldn’t make sense to specify the last details of this technique when I have a loud brass section, but it would when I’m writing for solo strings.

There are also practical ‘human’ considerations, such as how long it takes a performer to pick up a bow in order to produce a sound with it, or how long it takes to move a hand or the instrument to a different position.

Concentrating on the sound world of the viola, it would be crazy to not admit that every technique which is possible on the viola is possible on the violin (with the notable exception of the intervals possible in double stop). What is different is the timbre of the sound coming out of the instrument when it is performed, due to the difference in size and the range. It does come out bottom in most ensembles, fourth in the string quartet, lagging desperately behind the sonorous depths of the cello and the agility of the violin, the butt of jokes in the orchestra, but on top in contemporary ensembles, like the ugly duckling suddenly given centre stage, v.i.p. treatment. All the more reason not to write for it, since so many composers have written very successful contemporary works for the instrument, and adding to the pile of unperformed contemporary viola scores is not a nice image. All the same, the inspiration for writing these pieces is great, with great contemporary virtuosos borne from the abundance of repertoire.

Tags: ,

Viola listening

In preparation for the upcoming Viola and Electronics piece, I have prepared some listening:

Firstly, CDs in the Lenagan to listen to:

* Garth Knox – Works for Solo Viola
Contains: György Ligeti – Sonata for Solo Viola
György Kurtág – Jelek
James Dillon – Siorram
Pascal Dusapin – Inside
Salvatore Sciarrino – Notturni Brillanti
Luciano Berio – Sequenza VI

That makes two Transylvanian/Hungarian composers, two Italians, a Glaswegian and a Frenchman.

I sometimes find solo instrumental works hard to stomach, being for the most part particularly private affairs, both through performance and composition. I find the Ligeti immensely likeable and characterful, obviously one of his more successful works. The inlay for the CD mentions his fascination with the C string, initially being the only part of the instrument which attracted him. It also talks about the Viola in its priveliged setting in contemporary composition, and its prior shunning: it explains this through its description of its role as the ‘ugly duckling’. There is an element of truth in this, especially in terms of quartet and orchestral writing, since the instrument simply serves a function to bridge the gap between the cello and violin. However, string instruments are easily the most homogeneous of all the instrument groups, and if the range of the viola is appreciated it easily satisfy most composers’ desires.

Ligeti was obviously aware of the stigma of the instrument, and almost went overboard in highlighting its unique characteristic—the deep tone of the C string—in the first movement.

Probably one of the most important issues to tackle before beginning a solo instrumental work is the balance between vertical harmony and melodic contour. Ligeti tackles vertical harmony by making use of double stopping, and especially open strings in the second movement. Extended techniques are not used at all, instead relying on delicately composed (heavy-handed/brutal?) harmony to reinforce the harmonic sound-world. He carefully sculpts melodic contour around the harmony, it seems to me highlighting the awkward moments of juxtaposition without completely destroying the general sense of harmonic movement.

I’m not sure I can get anything from the Kurtág. Each movement seems like an awkward teenager, making a concerted effort to be ‘wrong’. Each musical moment is almost completely separate from the next, carefully considered and placed, but nonetheless with only a passing connection to its neighbours. Then again, I haven’t seen the score, but I don’t consider I would gain anything from that over simply listening. I appreciate his effort to create these miniature, completely self-contained, ultra-condensed works, much in the tradition of Webern, but I would consider my own approach to discover this material through a similar technique of precise and careful examination, but then to give it more ‘breathing space’.

I’ll come back to the rest.

Tags: ,

In the balance

Everything’s sitting in the balance at the moment. So many things on the scales could tip it in either direction. I am just going to let things tell me the way rather than making a decision just yet.

With tranquility, but with concentration, like watching a beautiful game unfold before my eyes. Once again, it is only time that will tell me. I am awaiting the rest of them to make their own decisions, which will guide my path. Obviously this affects little what I will do in reality, they are merely words which are imprinted and have a longer term impact, I have to make the decisions which affect me physically, but still it seems like they are the ones holding the key.

So many times, convincing others of worth, be that whichever value type affects you (monetary, metaphysical, spiritual etc.), is only dependent on words. Those words might be written or spoken, but in the end they are always delivered by you as a promise to deliver value. Again, what value you deserve to be given depends on how well you deliver the promise and not on what you actually deliver. Only a market seller actually demands a price for his fixed goods, but once that has fallen on the floor it is devalued, despite its constituent materials still being the same.

When do I start to say that my work has been sullied on the pavement? When do I ask for a fixed price? It is absurd to think that I could ask for a proportional price for my work based on the amount of hours I have put in (unless I was to sell it once and once only). As soon as I sell to more than one person the work has a value between nothing, when everyone owns it, and previously as nothing, when nobody owns it.

Finishing this album is like trying to tame a lion with a teaspoon, very easy when I have it under control and easier to abandon when I don’t. I guess I’m finding easier working methods but still finding limitations in technologies and still dreaming of a purer integration.

Tags: , , ,