Strudelify
Are You Sure Hank Done It This Way cover art

1975 · Dreaming My Dreams

Are You Sure Hank Done It This Way

Waylon Jennings

KeyB majorTempo113 bpm
0:00/0:00
// Are You Sure Hank Done It This Way — Waylon Jennings
// 113 bpm, 4/4, key B major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(113/4)

const chords = arrange(
  // intro (8 bars)
  [8, "<B E B E B E B E>"],
  // verse (8 bars)
  [8, "<B E B E B E B E>"],
  // trans (4 bars)
  [4, "<B E B E>"],
  // verse (6 bars)
  [6, "<B E B E B E>"],
  // chorus (4 bars)
  [4, "<B E B E>"],
  // solo (10 bars)
  [10, "<B E B E B E B E B E>"],
  // verse (6 bars)
  [6, "<B E B E B E>"],
  // chorus (4 bars)
  [4, "<B E B E>"],
  // trans (2 bars)
  [2, "<B E>"],
  // verse (6 bars)
  [6, "<B E B E B E>"],
  // chorus (4 bars)
  [4, "<B E B E>"],
  // outro (12 bars)
  [12, "<B E B E B E B E B E B E>"],
  // fadeout (8 bars)
  [8, "<B E B E B E B E>"],
)
const bassline = arrange(
  [8, "<b2 e2 b2 e2 b2 e2 b2 e2>"],
  [8, "<b2 e2 b2 e2 b2 e2 b2 e2>"],
  [4, "<b2 e2 b2 e2>"],
  [6, "<b2 e2 b2 e2 b2 e2>"],
  [4, "<b2 e2 b2 e2>"],
  [10, "<b2 e2 b2 e2 b2 e2 b2 e2 b2 e2>"],
  [6, "<b2 e2 b2 e2 b2 e2>"],
  [4, "<b2 e2 b2 e2>"],
  [2, "<b2 e2>"],
  [6, "<b2 e2 b2 e2 b2 e2>"],
  [4, "<b2 e2 b2 e2>"],
  [12, "<b2 e2 b2 e2 b2 e2 b2 e2 b2 e2 b2 e2>"],
  [8, "<b2 e2 b2 e2 b2 e2 b2 e2>"],
)

// 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)

More by Waylon Jennings