Skip to content

Presets Reference

Complete reference for all configurable presets in MIDI Sketch Bach.

Reading these tables

ID and String are API values. Voices, meter, natural bars, key, and character are musical structure choices. If those terms are new, keep the Music Primer for Engineers open while reading this page.

Forms Reference

All 10 Forms

IDNameStringCategoryDefault InstrumentVoicesMeterNatural Bars
0Fugue"fugue"OrganOrgan34/442
1Prelude and Fugue"prelude_and_fugue"OrganOrgan34/424
2Trio Sonata"trio_sonata"OrganOrgan34/416
3Chorale Prelude"chorale_prelude"OrganOrgan24/416
4Toccata and Fugue"toccata_and_fugue"OrganOrgan34/432
5Passacaglia"passacaglia"OrganOrgan23/424
6Fantasia and Fugue"fantasia_and_fugue"OrganOrgan34/432
7Cello Prelude"cello_prelude"SoloCello14/48
8Chaconne"chaconne"SoloViolin23/416
9Goldberg Variations"goldberg_variations"VariationHarpsichord34/420

Bar counts

"Natural Bars" is the length when scale: "short". The scale option multiplies it (~1x/2x/3x/4x), and targetBars overrides it. Every form caps at 128 bars.

Natural bars are not seconds

A bar count is musical length, not wall-clock duration. Playback time also depends on bpm and meter. A 42-bar fugue at 80 BPM lasts longer than the same 42 bars at 140 BPM.

Form Selection Flowchart

Organ System (Forms 0--6)

The seven organ forms cover the major genres of Bach's organ repertoire. All default to organ registration and typically use 2--3 voices. These forms feature the most sophisticated counterpoint, as the organ's sustained tones make every voice-leading detail audible.

Solo Instrument System (Forms 7--8)

The two solo forms generate music for unaccompanied string instruments. The cello prelude is a single continuous line; the chaconne pairs a ground bass with an upper line. Implied polyphony emerges through register shifts, arpeggiation, and chordal writing.

Variation System (Form 9)

The Goldberg Variations form is a theme-and-variations cycle over an immutable bass, defaulting to harpsichord.

BWV References by Form
FormNotable Bach Works
FugueBWV 578 (G minor "Little" Fugue), BWV 542/2
Prelude and FugueBWV 532, 541, 548, 846--893 (Well-Tempered Clavier)
Trio SonataBWV 525--530 (Six Trio Sonatas)
Chorale PreludeBWV 599--644 (Orgelbüchlein), BWV 651--668
Toccata and FugueBWV 565 (D minor), BWV 540
PassacagliaBWV 582 (C minor)
Fantasia and FugueBWV 537, 542, 561
Cello PreludeBWV 1007--1012 (Cello Suites)
ChaconneBWV 1004/5 (Partita No. 2 in D minor)
Goldberg VariationsBWV 988

Instruments Reference

IDNameStringGM ProgramSoundTypical Forms
0Organ"organ"19Church OrganAll organ forms (0--6)
1Harpsichord"harpsichord"6HarpsichordGoldberg Variations (9), any form
2Piano"piano"0Acoustic Grand PianoAny form
3Violin"violin"40ViolinChaconne (8)
4Cello"cello"42CelloCello Prelude (7)
5Guitar"guitar"24Nylon GuitarSolo forms (7--8)

Instrument does not decide the composition

The instrument selects MIDI sound, playable range, and ornament density. It does not change voice count, meter, form layout, or validator rules; those come from form.

TIP

While each form has a default instrument, you can override it with any instrument. For example, a fugue played on harpsichord has a distinctly different character than on organ — the harpsichord's crisp attack makes counterpoint lines more distinct.

Subject Characters

IDNameStringEffect
0Severe"severe"Strict, intellectually rigorous (default)
1Playful"playful"Light, agile, rhythmically lively
2Noble"noble"Stately, broad, dignified
3Restless"restless"Driving, chromatic, dramatically charged

INFO

The character parameter affects the melodic profile of the fugue subject or primary thematic material. It has the most noticeable effect on fugal forms, where the subject defines the character of the entire piece. Two combinations are forbidden and throw: chorale_prelude rejects playful/restless, and toccata_and_fugue rejects noble.

Scale Modes

scale multiplies the form's natural length. targetBars overrides it.

IDNameStringApproximate Length
0Short"short"~1x natural (default)
1Medium"medium"~2x natural
2Long"long"~3x natural
3Full"full"~4x natural

TIP

The actual output length depends on each form's natural length (see the Forms Reference table above): the same scale produces different bar counts for different forms because each scales from its own natural length. Use targetBars for precise length control; values are clamped to [form minimum, 128].

Key Reference

IDNamePitch ClassCommon Baroque Associations
0CCPurity, simplicity, clarity
1C# / DbC#Devotion, depth
2DDTriumph, brilliance (D major); passion, drama (D minor)
3D# / EbEbHeroic grandeur, nobility
4EEJoy, brightness (E major); lament (E minor)
5FFPastoral, calm
6F# / GbF#Intensity, brilliance
7GGGrace, simplicity (G major); seriousness (G minor)
8G# / AbAbSolemn, devotional
9AATenderness, elegance (A major); gentle melancholy (A minor)
10A# / BbBbNobility, warmth
11BBHard brilliance (B major); somber weight (B minor)

Pitch class and mode

key chooses the pitch class, such as C or D. isMinor chooses major or minor. For example, key: 2, isMinor: false is D major; key: 2, isMinor: true is D minor.

Key Associations in Baroque Music

Baroque composers associated specific keys with emotional qualities (Affektenlehre). D minor was the key of passion and drama (BWV 565 Toccata and Fugue), while C major represented purity (BWV 846 Prelude). These associations are subjective and vary by era, but they influenced Bach's choice of key for his compositions.

All keys work with both isMinor: false (major) and isMinor: true (minor).

Default Mapping

Cross-reference of form defaults (voices and meter are fixed by the form; BPM defaults to 100 unless you set it):

FormInstrumentVoicesMeterNatural Bars
FugueOrgan (0)34/442
Prelude and FugueOrgan (0)34/424
Trio SonataOrgan (0)34/416
Chorale PreludeOrgan (0)24/416
Toccata and FugueOrgan (0)34/432
PassacagliaOrgan (0)23/424
Fantasia and FugueOrgan (0)34/432
Cello PreludeCello (4)14/48
ChaconneViolin (3)23/416
Goldberg VariationsHarpsichord (1)34/420

Programmatic Access

Use the preset enumeration functions to access these values at runtime:

js
import {
  getForms,
  getInstruments,
  getCharacters,
  getKeys,
  getScales,
  getVersion
} from '@libraz/midi-sketch-bach'

// List all forms
const forms = getForms()
for (const form of forms) {
  console.log(`${form.id}: ${form.display ?? form.name}`)
}
// 0: Fugue
// 1: Prelude and Fugue
// 2: Trio Sonata
// 3: Chorale Prelude
// 4: Toccata and Fugue
// 5: Passacaglia
// 6: Fantasia and Fugue
// 7: Cello Prelude
// 8: Chaconne
// 9: Goldberg Variations

// List all instruments
const instruments = getInstruments()
// [{ id: 0, name: "organ" }, ...]

// List all keys
const keys = getKeys()
// [{ id: 0, name: "C" }, { id: 1, name: "C#" }, ...]

TIP

These functions are useful for building UI components like dropdowns or form selectors. The demo on this site uses them to populate the form selection interface.

Dual-licensed: AGPL-3.0 · commercial licensing available. Generated MIDI is yours to use freely.