Strudelify
Walk On The Wild Side (Part 1) cover art

1962 · Bashin': The Unpredictable Jimmy Smith

Walk On The Wild Side (Part 1)

Jimmy Smith

KeyF majorTempo110 bpm
0:00/0:00
// Walk On The Wild Side (Part 1) — Jimmy Smith
// 110 bpm, 12/8, key F major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(110/6)

const chords = arrange(
  // intro (6 bars)
  [6, "<~!2 F5!4>"],
  // verse (4 bars)
  [4, "<F7!4>"],
  // verse (4 bars)
  [4, "<F7!4>"],
  // chorus (4 bars)
  [4, "<C7 F7 C7 F7>"],
  // interlude (4 bars)
  [4, "<[F7@6 F@6] [Bb^9@6 Bb6@6] [F7@6 F@6] [Bb^9@6 Bb6@6]>"],
  // chorus (4 bars)
  [4, "<C7 F7 C7 F7>"],
  // bridge (8 bars)
  [8, "<Bb7 F7 Bb7 F7 Bb7 F7 Bb7 F7>"],
  // chorus (2 bars)
  [2, "<C7 F7>"],
  // interlude (4 bars)
  [4, "<[F7@6 F@6] [Bb^9@6 Bb6@6] [F7@6 F@6] [Bb^9@6 Bb6@6]>"],
  // chorus (4 bars)
  [4, "<C7 F7 C7 F7>"],
  // trans (2 bars)
  [2, "<~!2>"],
  // solo (48 bars)
  [48, "<F7!2 Bb7 F7 [C7@6 Bb7@6] F7!3 Bb7 F7 [C7@6 Bb7@6] F7!3 Bb7 F7 [C7@6 Bb7@6] F7!3 Bb7 F7 [C7@6 Bb7@6] F7!3 Bb7 F7 [C7@6 Bb7@6] F7!2 C7 Bb7 F7 [C7@6 Bb7@6] F7!3 Bb7 F7 [C7@6 Bb7@6] F7!3 Bb7 F7 [C7@6 Bb7@6] F7>"],
  // interlude (4 bars)
  [4, "<[F7@6 F@6] [Bb^9@6 Bb6@6] [F7@6 F@6] [Bb^9@6 Bb6@6]>"],
  // chorus (3 bars)
  [3, "<C7 F7 C7>"],
  // verse (7 bars)
  [7, "<F7!7>"],
)
const bassline = arrange(
  [6, "<~!2 f2!4>"],
  [4, "<f2!4>"],
  [4, "<f2!4>"],
  [4, "<c2 f2 c2 f2>"],
  [4, "<[f2@6 a2@6] bb2 [f2@6 a2@6] bb2>"],
  [4, "<c2 f2 c2 f2>"],
  [8, "<bb2 f2 bb2 f2 bb2 f2 bb2 f2>"],
  [2, "<c2 f2>"],
  [4, "<[f2@6 a2@6] bb2 [f2@6 a2@6] bb2>"],
  [4, "<c2 f2 c2 f2>"],
  [2, "<~!2>"],
  [48, "<f2!2 bb2 f2 [c2@6 bb2@6] f2!3 bb2 f2 [c2@6 bb2@6] f2!3 bb2 f2 [c2@6 bb2@6] f2!3 bb2 f2 [c2@6 bb2@6] f2!3 bb2 f2 [c2@6 bb2@6] f2!2 c2 bb2 f2 [c2@6 bb2@6] f2!3 bb2 f2 [c2@6 bb2@6] f2!3 bb2 f2 [c2@6 bb2@6] f2>"],
  [4, "<[f2@6 a2@6] bb2 [f2@6 a2@6] bb2>"],
  [3, "<c2 f2 c2>"],
  [7, "<f2!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 hh] [sd hh hh] [bd hh hh] [sd hh hh]").gain(0.8)

stack(keys, bass, drums)