Strudelify
Soul Dance Number Three cover art

1967 · The Sound of Wilson Pickett

Soul Dance Number Three

Wilson Pickett

KeyE majorTempo109 bpm
0:00/0:00
// Soul Dance Number Three — Wilson Pickett
// 109 bpm, 4/4, key E major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(109/4)

const chords = arrange(
  // intro (10 bars)
  [10, "<E7!10>"],
  // verse (8 bars)
  [8, "<E7!8>"],
  // chorus (6 bars)
  [6, "<G F B E E7!2>"],
  // verse (8 bars)
  [8, "<E7!8>"],
  // chorus (4 bars)
  [4, "<G F B E>"],
  // solo (4 bars)
  [4, "<E7!4>"],
  // outro (21 bars)
  [21, "<E7!20 ~>"],
  // fadeout (12 bars)
  [12, "<E7!12>"],
)
const bassline = arrange(
  [10, "<e2!10>"],
  [8, "<e2!8>"],
  [6, "<g2 f2 b2 e2!3>"],
  [8, "<e2!8>"],
  [4, "<g2 f2 b2 e2>"],
  [4, "<e2!4>"],
  [21, "<e2!20 ~>"],
  [12, "<e2!12>"],
)

// 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 Wilson Pickett