Strudelify
Land Of 1000 Dances cover art

1963 · Land of 1000 Dances

Land Of 1000 Dances

Chris Kenner

KeyE♭ majorTempo137 bpm
0:00/0:00
// Land Of 1000 Dances — Chris Kenner
// 137 bpm, 4/4, key Eb major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(137/4)

const chords = arrange(
  // intro (1 bars)
  [1, "<Bb>"],
  // verse (16 bars)
  [16, "<Eb7!16>"],
  // verse (16 bars)
  [16, "<Eb7!16>"],
  // verse (16 bars)
  [16, "<Eb7!16>"],
  // verse (16 bars)
  [16, "<Eb7!16>"],
  // verse (12 bars)
  [12, "<Eb7!12>"],
  // fadeout (7 bars)
  [7, "<Eb7!7>"],
)
const bassline = arrange(
  [1, "<bb2>"],
  [16, "<eb2!16>"],
  [16, "<eb2!16>"],
  [16, "<eb2!16>"],
  [16, "<eb2!16>"],
  [12, "<eb2!12>"],
  [7, "<eb2!7>"],
)

// chords · gm_piano
const keys = chord(chords).voicing().s("gm_piano").gain(0.8)
// bass · gm_electric_bass_finger
const bass = note(bassline).s("gm_electric_bass_finger").gain(0.9)
// drums
const drums = s("[bd hh] [sd hh] [bd hh] [sd hh]").gain(0.8)

stack(keys, bass, drums)