justInTune

A webapp that dynamically tunes each chord to be justly intonated.


Read all about it.

Quick Details

  • IMPORTANT: For now you must use the computer keyboard to control the synth. ("adg" is a C major chord).
  • Hitting spacebar allows you to switch between equal tempered and just intonation. This makes it easy and quick to compare the differences.

Currently Using: Just Intonation

Notes Depressed:

Current Ratio Is:

ABSTRACT

We all know an octave has a 1:2 ratio. The second note is twice as high in frequency as the first; if an A is 440hz, an octave up would be 880hz. The sound of an octave is pure: basically, like a unison. A perfect 5th also has a simple ratio of 2:3. A major third is a 4:5. A minor third is a 5:6. A major triad (consisting of a major third + a minor third) is a 4:5:6. If you had a synth play three notes, 400hz-500hz-600hz, the sound would be crisp and laser focused: no beats.

However, if you go up to any piano and find the pitch of each note in any major chord, you will discover that all these ratios (except the octave) are slightly off; everything is slightly out of tune. We began using this Equal Temperament Tuning (an adjusted tuning system so that an octave is divided into 12 equal parts) to make all keys sound equally good (or 'equally bad'). Before Equal Temperament, depending on how you tuned things, some keys sounded great and others terrible.

Having Equal Temperament works out well, especially on a practical level. If a piece of music played on a piano with some historic tuning changed keys, the intonation would either get better or worse depending on where you started and where you went to, and although many things sounded much more pure, it came with the cost of a very restrictive use. In other words, you couldn't have your cake and eat it.

HOWEVER, with today's ease of harnassing the massive computational power and speed of machines with a few handfuls of code, it's possible to humor the idea that a flexible Just Intontation system might in some capacity have a place in music once more.

It's also interesting to note that musicians who play instruments without fixed pitches (violinists, for example) are always adjusting their intonation to fit other string players (often with Just Intonation), a fixed Equal Tempered instrument (a piano, perhaps), or a general key center (the tonic, or dominant). In a world increasingly dominated by synthetically produced music, it would be interesting if the synthetic instruments made similar decisions with regard to their tuning. This web-app is a small step in that direction.

I start with the assumption that the simplest ratio table (like 4:5:6 for a major chord) results in the most consonant chord. I have a good hunch that's already INCORRECT, but it seems correct quite often and it's easy to design an algorithm around that.

The simplest ratio table is not always easy to find, however. Intervals are somewhat subjective. We're not quite sure whether a 15:16 or a 16:17 describes a minor second better. They both might sound "better" in different contexts -- with other notes. And besides unisons and perfect 5ths, every basic interval has multiple definitions. The tritone has at least 6.

My technique for choosing the best table involves your computer calculating every possible combination of ratio tables for up to 6 inputed notes and then choosing the simplest one.

Sometimes the results are very pure and clear. Other times can be quite unsettling; just altering one note in a sustained chord causes everything to shift around. For example, hold down any note, play a second note a perfect 4th above and climb that second note to the octave. Notice the shifting!

Anyways... I don't expect a tool like this to be that useful except in making one aware of how perplexing and subjective tuning is. What we've historically been accustomed to has changed in modern times and it may change more. It also makes you wonder what dissonance is and how inescapable it is on even a "perfectly" tuned instrument; the beating on Equal Temperament is almost like a chorus effect. And it makes you realize just how good a mathematically perfect ratio can sound.

-Joseph Weidinger 2016-10-20

FUTURE

  • I want to experiment with sampling an instrument at a frequency as opposed to synthesizing an artificial one.
  • Currently, the ratios are derived from the highest note to the lowest. I would like to provide an option for selecting a specific note to derive everything else.

CREDITS


Languages : HTML, CSS, Javascript, jQuery
Basic Javascript Piano by Peter Coles.
Flocking - Web audio framework
Web MIDI API