Connecting observations to techniques

If you are teaching a woodwind methods course, you might be interested in my book.

In my woodwind methods class, I try to create lots of opportunities for students (future instrumental music educators) to practice observing woodwind playing and giving feedback. For the feedback to be useful, it needs to connect an observation to a technique. Here are some examples of what not to do:

Observation without technique

“Your tone sounds good.”

“Your intonation is problematic.”

“There are response issues.”

First, it’s important that an educator can articulate their observations with clarity and detail. What is “good” about the student’s tone? (Are you saying that it is characteristic? That it is consistent from note to note?) What is problematic about their intonation? (Is it flat overall? sharp overall? Is it unstable over the course of a phrase? over the course of a single note?) What “issues” are there with response? (Notes responding late? Notes responding with extraneous noise?)

But once the problem or success is clearly identified, it still isn’t of much use unless it comes withĀ a recommendation.

“Your tone is very consistent. Nice work using steady breath support.”

“Your pitch is scooping upward into each note—be sure to articulate with just the tip of the tongue so your voicing remains stable.”

“Let’s see if a softer reed will allow your notes to respond more quickly and clearly.”

Technique without observation

“Try relaxing your embouchure.”

“Use more breath support.”

“Keep your fingers close to the keys.”

Barking orders without explanation might produce some short-term results, but when students know what result you’re trying to produce they can be proactive.

“Remember, you can get that bigger, clearer sound if you relax your embouchure.”

“Use more breath support so those high notes will be up to pitch.”

“You’re having trouble covering the toneholesĀ because your fingers are starting from too far away. Keep them closer so they can find the holes more easily.”

When my students learn to give feedback that connects their specific, precise observations with clearly-taught techniques, they are preparing for fruitful lessons and rehearsals with their own future students.

Similar Posts

  • Crossing the break on the clarinet is easy

    The following is a comprehensive list of what clarinetists need to do to successfully Cross the Dreaded Break:

    1. Put the correct fingers in the correct places at the correct time.
    2. That is all.

    I frequently meet young clarinetists who have been taught that a successful Crossing of the Dreaded Break requires many other things, including but not limited to:

    Photo, MikeBlogs
    Photo, MikeBlogs

    If breath support, embouchure, and voicing are correctly established, then Crossing the Dreaded Break ceases to be a Thing. It’s just another note: a moment ago you were playing B-flat, and now you are playing B-natural. As long as your fingers get where they are supposed to go, then that’s all there is to it.Ā Personally, I don’t even use the word “break” with a beginning student—there’s no need to get them all uptight about what really is a non-event. Read More “Crossing the break on the clarinet is easy”

  • Creating fingering charts with diagrams from the Fingering Diagram Builder

    My Fingering Diagram Builder has been around for a little over five years now. IĀ was careful to name it the FingeringĀ DiagramĀ Builder instead of the FingeringĀ ChartĀ Builder because it is a tool for creating individual diagrams, notĀ for assembling them into comprehensive fingering charts.Ā But the difference can be a little confusing, so I get frequent questions from users who complain that they can’t figure out how to create and downloadĀ a “chart” with multiple fingerings on it.

    The reason I didn’t try to build a complete system for creating fingering chartsĀ is that I assumed users would have widely-varying needs, and would do better to assemble charts using some other kind of software. Here are a few examples of how that might be done, using music notation software, using a word processor, and using a text editor to create HTML code (such as for a website). All the software I’m using here is free to download on Windows, Mac OS, and Linux,Ā but whatever free or commercial programs you are already using probably have similar features. You’re on your own to work out the details (and feel free to share them in the comments if you are feeling helpful).

    Creating a fingering chart in music notation software

    I am using MuseScore here, but commercial software like Finale and Sibelius and other freeĀ software like LilyPond could be used in similar ways.

    First I set up a musical “score” with the notes for the chart. I usedĀ whole notes, separated by double bar lines, but that’s up to you.

    MuseScore setup

    Next I created my fingering diagrams in the FDB.Ā I sized the diagrams “tiny” with “thick” lines.

    Adding the diagrams to the score is very simple in MuseScore—I just dragged the downloaded diagrams from my file manager right onto the score. If I drag the diagram and hover it on top of a note, that note gets highlighted. Then I can release the diagram and it attaches to the note.

    musescore-drop

    Initially the diagrams are placed right on top of the note. I selected the diagrams and used the Inspector panel to give them a horizontal offset of -2.5sp and a vertical offset of -10.5 sp, which moved them above the staff, more or less centered above the noteheads. I adjusted the A and tenor B-flat fingerings’ horizontal offsets a bit more to make them look just right.

    Here is the finished product, a small chart with a few bassoon fingerings:

    bassoon-fingering-chart-sample

    Creating a fingering chart in word processing software

    I am using LibreOffice Writer, but something like Microsoft Word or Apple Pages would work just as well.

    First I opened a new document and insertedĀ a table. My table has three rows and seven columns.
    writer-table

    Then I dragged the downloaded diagrams from my file manager into the bottom row of the table.

    writer-diagrams

    I merged some cells together, dragged in some images of notes on staves, and added some text.

    writer-complete

    A few more little tweaks and here is the finished chart:

    clarinet-fingering-chart-sample

    Creating an HTML fingering chart in text editingĀ software

    This codeĀ be used in any text editor or HTML source editor, and of course similar results could be accomplished with a visual/WYSIWYG editor. I’m not showing complete code here, just the most relevant parts.

    I started with a framework for a table that I could use to show a note with two alternate fingerings. (This is a flute fingering chart with horizontally-oriented diagrams. For an instrument with vertically-oriented diagrams, you mayĀ want to rearrange things a bit.)

    <table>
      <tr>
        <th rowspan=2><!— note image here —></th>
        <td><!— first fingering image here —></td>
        <td><!— first fingering text here —></td>
      </tr>
      <tr>
        <td><!— second fingering image here —></td>
        <td><!— second fingering text here —></td>
      </tr>
    </table>
    

    Then I plugged in <img> tags and text:

    <table>
      <tr>
        <th rowspan=2><img src="images/f-sharp-note.png" /></th>
        <td><img src="images/f-sharp-standard.png"</td>
        <td>Standard</td>
      </tr>
      <tr>
        <td><img src="images/f-sharp-trill.png"</td>
        <td>Trill from E</td>
      </tr>
    </table>

    I duplicated that code for additional notes. Since this is a sample alternate/trill fingering chart, each note has at least two fingerings. For notes with moreĀ fingerings, I added <tr>s and changed the rowspan values accordingly.

    I also added a little CSS to spruce things up:

    <style>
      table {
        display: inline-block; /* make tables wrap gracefully depending on screen width */
        margin: 1em; /* put some space between tables for legibility/clarity */
      }
      th img {
        max-width: 8em; /* manage size of note images */
      }
    </style>

    Here is the result:

    flute-fingering-chart-sample

    I hope that sparks a few ideas for you if you are considering putting together a fingering chart. If you have other methods or tips, please share in the comments section!

  • Voicing: stable vs. flexible

    I have discussed here previously the importance of proper voicing for woodwind instruments. In a nutshell, voicing is the configuration of the oral cavity, manipulated by moving the back of the tongue.

    There seems to be some debate about voicing: is it something static, or something that changes from note to note? I find that the answer is, sort of, both.

    photo, stonelucifer
    photo, stonelucifer

    For beginning woodwind players, tone, intonation, and response (virtually every aspect of tone production) can be improved by habituating a single, stable, “correct” voicing. When this is accomplished, an ideal woodwind instrument, which of course does not exist, would play perfectly in tune, with perfectly consistent tone from note to note, and with perfectly even and reliable response.

    An instrument that is merely good will do these things well, but imperfectly. A more advanced musician can use small and temporary voicing adjustments to improve individual notes by altering their pitch, tone, or responsiveness. Doing this requires a “stable” voicing as a stepping-off point, fine control of the mechanics of voicing, and an ear trained to hear notes that are out of tune, uncharacteristic in tone, or problematic response-wise.

    So, in general, when working with beginning students or others with significant tone production issues, the goal is to work toward a stable voicing that stays the same from note to note, but with more advanced students the goal is to learn to adjust the voicing ever so slightly to improve each note as needed.

  • Woodwind doubling and oboe problems

    There’s an increasing expectation that woodwind doublers be competent and confident oboists. It can be a challenging double, but a worthwhile one. Many of my doubling gigs have come to me because of my ability and/or willingness to play the oboe. And even though it’s not my strongest instrument, there are considerable spans of my career during which I’ve made more money playing the oboe than any other instrument.

    Here are some of the common problems woodwind doublers, often coming from background in the single reed instruments, have with the oboe:

    Fingering awkwardness. Dedicated, conscientious practice of scales/arpeggios and technical material goes a long way here, but there are some additional considerations specific to the oboe.

    First, the oboe’s toneholes are rather widely spaced, maybe surprisingly so for clarinet and saxophone players. (This has to do with the oboe’s very narrow bore—the toneholes have to be quite small so as not to catastrophically weaken the instrument’s body, which means they have to be spaced widely to produce a scale.) This can be a cause of tension. Work diligently at keeping your hands relaxed. If it helps, use a neckstrap to further reduce hand strain.

    Second, the oboe, more than the other woodwinds, tends to have more keys the more you pay for it. It’s very worthwhile to save up for an oboe with a left F key, and to learn to use it fluently. The left F key should be seen as part of the instrument’s core fingering technique. Many of the other keys available on professional or semi-professional instruments are less-used, but valuable in specific situations.

    Uneven tone and intonation. The oboe requires a very low voicing, lower than a saxophonist is used to andĀ much lower than a clarinetist is used to. It also offers little forgiveness for weak or inconsistent breath support. Learn to balance low voicing against steady support to even out the instrument’s sound and stabilize its pitch. (Like fellow conical-bore instruments the saxophone and the bassoon, the oboe’s response suffers particularly in the lowest register when your voicing is too high.)

    Similarly, embouchure should remain open, not pinched, regardless of register. Remember that the embouchure’s function is to be a mostly-passive gasket between your air system and the instrument. Resist the urge to bite when moving into the highest register—rely on good breath support instead.

    Overall response sluggishness/unreliability. My experience is that many, many intermediate (and especially self-taught) oboists are playing on reeds that are far too stiff. If your notes won’t respond reliably and delicately at a soft dynamic, and you’re sure your breath support, voicing, and embouchure are working well, you should consider a more responsive reed.

    Because oboe reeds are so susceptible to change, the best way to sound like a pro reed-wise is to spend a few years’ worth of lessons learning to make (or at least adjust) them yourself. Failing that, it’s worth it to buy reeds face-to-face from a good reedmaker, rather than from a music store or a distant internet reedmaker, so that they can adjust them for you on the spot. Reeds from a local reedmaker are also adapted to your altitude and climate.

    Another important and ongoing concern is adjustment of the instrument itself. The oboe has many adjustment screws that need occasional tweaking. It’s best of course to learn this art under the supervision of a good teacher. But if you’re mechanically-inclined and have a good oboe technician standing by to bail you out, there are a number of books and resources that explain the method in a clear and methodical way. A small tweak here and there can transform a stuffy, stubborn oboe into a responsive, cooperative instrument that is a joy to play.

    Approach the oboe on its own terms, equipped with good reeds and a good grasp of tone-production fundamentals, and enjoy!

  • Woodwind doubling recital program, Northwestern University, 1950

    A new Internet friend shared this gem with me (click for slightly larger):

    Read More “Woodwind doubling recital program, Northwestern University, 1950”

  • Clarinet glissando

    There are few more coveted clarinet techniques than the smooth glissando, as heard in the famous opening to Rhapsody in Blue. But the technique isn’t intuitive, and lots of questions persist about how to do it.

    (Incidentally: the Rhapsody in Blue score doesn’t call for a smooth portamento-type effect, but a scale with discrete notes. But the portamento became tradition early in the piece’s life and is now more or less required.)

    How the clarinet glissando is done, technique-wise

    One key thing to understand is that finger movement is the smallest part of the clarinet glissando. It’s not possible (or at least I’ve never seen it done) to achieve the full effect by simply uncovering toneholes gradually. The real work here is done with voicing.

    Let’s break the technique down. We’ll use Rhapsody in Blue as an example, but the principles can be applied to other repertoire (or improvisations).

    First, let’s look at what’s called for in the score:

    clarinet glissando notation from Rhapsody in Blue

    Glissandos that cross register breaks are a particular challenge, so most clarinetists avoid that, opting to play a scale in the lower register, and beginning the glissando at the lower-clarion B or C.

    High C is the destination note. Start by playing that note and using your voicing (think of blowing warmer air) to bend the pitch downward. Resist the urge to “lip” it down with your embouchure muscles or to let your breath support sag.

    Bend it down absolutely as far as you can, until the note quits. It can take some practice to get a wide pitch bend range. Don’t strain; play around with it for a few minutes, then try again tomorrow.

    Once you’re able to bend it fairly far, try kicking in some extra breath support. The air column is reluctant to vibrate when it’s bent too far (I’m fudging a little here on the acoustics). Use powerful air, even more powerful than usual, to make it keep vibrating, and see if you can bend even farther.

    Now go to the lower part of the glissando, B or C in the staff. Try to bend it. You probably can’t bend this long-tube note, with lots of closed toneholes, nearly as much as you could bend the short-tube high C.

    Now play the note, and gradually let your fingers lift, just a little bit, off the toneholes.

    Notice that with the toneholes just slightly vented, the note becomes much less stable—or more bendable. Play around with the pitch to get the feel of it.

    Now play the lowest note of the glissando (I’m using C here for simplicity). Move the fingers a little off their toneholes (all of them, except the left thumb, which stays in position for high C) while simultaneously bending the pitch down hard with voicing. (Remember to keep breath support strong.) While gradually moving the fingers farther off the toneholes, bend gradually upward with voicing. As the fingers finally completely clear the toneholes, the voicing arrives at its standard high position, and the pitch settles in on high C.

    It takes practice to get the fingers and voicing coordinated, and to gain enough control to shape the bend just how you want it.

    To execute the Rhapsody in Blue opening, play a scale in the lower register, then switch as seamlessly as possible to a glissando just above the register break. Some players play the scale portion as written, but some attempt to make it sound more glissando-like by turning it into a chromatic scale. Sometimes they also start the scale on chalumeau F-sharp rather than the written G.

    How the clarinet glissando is done, taste-wise

    Mastering the technique of the glissando, like mastering any technique, is only the first step. The next and perhaps more important step is to learn to do it with good musical taste.

    When performing a glissando, carefully consider the shape of the pitch bend. How long is the bend overall? Should the pitch move in a straight line from one pitch to another? (Unlikely.) Should it have more of a curve, staying low at first and then rising at an increasing rate? Should there be a moment at the beginning or end at which the pitch remains stable, or is it constantly in motion?

    These are fine distinctions, but important to the character of the glissando. Careful, detailed listening is crucial to the process—be sure to check out as many good recordings as you can, and note the differences in approach. If your intention is for the glissando to sound jazz-like, make sure you are listening to jazz players who use that effect, not just classical players who may or may not have done their homework.

    Why it’s a clarinet-specific effect

    The clarinet, unlike any of the other major modern wind instruments, uses a very high voicing for general playing. This leaves room to lower the voicing considerably for this special glissando effect. Flutes and double reeds (and brass instruments) use a very low voicing, which theoretically can be raised, but a raised voicing on a low-voicing instrument doesn’t cover as much territory pitch-wise; in other words, it’s harder to raise the pitch with voicing than it is to lower it. The saxophones, with an in-between voicing, have some flexibility here, but also have to contend with large keys on large toneholes, which are not as precise for hole-uncovering as fingertips on small clarinet toneholes. (The keys situation also explains why the larger clarinets aren’t nearly as agile with glissandos, even though those instruments are properly played with a high voicing.) In short, the technique lends itself particularly to the high clarinets, and may be much more difficult on other woodwinds.

    Practice smart!

Leave a Reply

Your email address will not be published. Required fields are marked *

Comments that take a negative or confrontational tone are subject to email and name verification before being approved. In other words: no anonymous trolls allowed—take responsibility for your words.

This site uses Akismet to reduce spam. Learn how your comment data is processed.