Strudelify
Just A Dream cover art

1958 · Venus In Blue Jeans / Just A Dream

Just A Dream

Jimmy Clanton

KeyG majorTempo123 bpm
0:00/0:00
// Just A Dream — Jimmy Clanton
// 123 bpm, 12/8, key G major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(123/6)

const chords = arrange(
  // verse (16 bars)
  [16, "<G G7 D7!4 [G@6 C@6] G!2 G7 D7!4 [G@6 C@6] [G@3 G7@3 G6@3 G@3]>"],
  // chorus (9 bars)
  [9, "<C Cm G G7 C Cm A7 D7!2>"],
  // verse (8 bars)
  [8, "<G G7 D7!4 [G@6 C@6] [G@3 G7@3 G6@3 G@3]>"],
  // chorus (9 bars)
  [9, "<C Cm G G7 C Cm A7 D7!2>"],
  // verse (8 bars)
  [8, "<G G7 D7!4 [G@6 D7@6] [G@3 D7@3 G@6]>"],
)
const bassline = arrange(
  [16, "<g2!2 d2!4 [g2@6 c2@6] g2!3 d2!4 [g2@6 c2@6] g2>"],
  [9, "<c2!2 g2!2 c2!2 a2 d2!2>"],
  [8, "<g2!2 d2!4 [g2@6 c2@6] g2>"],
  [9, "<c2!2 g2!2 c2!2 a2 d2!2>"],
  [8, "<g2!2 d2!4 [g2@6 d2@6] [g2@3 d2@3 g2@6]>"],
)

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