Strudelify
Lookin' For Love cover art

1980

Lookin' For Love

Johnny Lee

KeyD majorTempo124 bpm
0:00/0:00
// Lookin' For Love — Johnny Lee
// 124 bpm, 4/4, key D major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(124/4)

const chords = arrange(
  // intro (9 bars)
  [9, "<Em F#m G A Em F#m G A!2>"],
  // verse (16 bars)
  [16, "<G!2 D!2 G D A!2 G!2 D!2 G D A!2>"],
  // chorus (16 bars)
  [16, "<D!2 F#m!2 G!2 [Em@2 F#@2] [G@2 A@2] D!2 F#m!2 G [Em@2 A6@2] D!2>"],
  // verse (16 bars)
  [16, "<G!2 D!2 G D A!2 G!2 D!2 G D A!2>"],
  // chorus (16 bars)
  [16, "<D!2 F#m!2 G!2 [Em@2 F#@2] [G@2 A@2] D!2 F#m!2 G [Em@2 A6@2] D!2>"],
  // bridge (6 bars)
  [6, "<G!2 [Em@2 F#m@2] [G@2 A@2] A [A@2 ~@2]>"],
  // chorus (14 bars)
  [14, "<D!2 F#m!2 G!2 [Em@2 F#@2] [G@2 A@2] D!2 F#m!2 G [Em@2 A6@2]>"],
  // chorus (8 bars)
  [8, "<D!2 F#m!2 G!2 [Em@2 F#@2] [G@2 A@2]>"],
  // fadeout (8 bars)
  [8, "<D!2 F#m!2 G [Em@2 A6@2] D!2>"],
)
const bassline = arrange(
  [9, "<e2 f#2 g2 a2 e2 f#2 g2 a2!2>"],
  [16, "<g2!2 d2!2 g2 d2 a2!2 g2!2 d2!2 g2 d2 [a2@2 g2@2] [f#2@2 e2@2]>"],
  [16, "<d2!2 f#2!2 g2!2 [e2@2 f#2@2] [g2@2 a2@2] d2!2 f#2!2 g2 [e2@2 a2@2] d2!2>"],
  [16, "<g2!2 d2!2 g2 d2 a2!2 g2!2 d2!2 g2 d2 [a2@2 g2@2] [f#2@2 e2@2]>"],
  [16, "<d2!2 f#2!2 g2!2 [e2@2 f#2@2] [g2@2 a2@2] d2!2 f#2!2 g2 [e2@2 a2@2] d2!2>"],
  [6, "<g2!2 [e2@2 f#2@2] [g2@2 a2@2] a2 [a2@2 ~@2]>"],
  [14, "<d2!2 f#2!2 g2!2 [e2@2 f#2@2] [g2@2 a2@2] d2!2 f#2!2 g2 [e2@2 a2@2]>"],
  [8, "<d2!2 f#2!2 g2!2 [e2@2 f#2@2] [g2@2 a2@2]>"],
  [8, "<d2!2 f#2!2 g2 [e2@2 a2@2] d2!2>"],
)

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