Strudelify
Wendy cover art

1964 · The Warmth Of The Sun

Wendy

The Beach Boys

KeyF majorTempo135 bpm
0:00/0:00
// Wendy — The Beach Boys
// 135 bpm, 4/4, key F major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(135/4)

const chords = arrange(
  // intro (5 bars)
  [5, "<D5 G5 D5 Bb5 ~>"],
  // interlude (2 bars)
  [2, "<F Gm>"],
  // verse (8 bars)
  [8, "<F Gm F Bb F Bb Eb A>"],
  // verse (8 bars)
  [8, "<Dm Gm Dm Bb F [Gm@2 C@2] F Gm>"],
  // verse (8 bars)
  [8, "<F Gm F Bb F Bb Eb A>"],
  // verse (8 bars)
  [8, "<Dm Gm Dm Bb F [Gm@2 C@2] F Eb>"],
  // solo (8 bars)
  [8, "<Dm Gm Dm Bb F Dm Gm C>"],
  // verse (8 bars)
  [8, "<F Gm F Bb F Bb Eb A>"],
  // verse (8 bars)
  [8, "<Dm Gm Dm Bb F [Gm@2 C@2] F!2>"],
  // interlude (2 bars)
  [2, "<F Gm>"],
  // outro (12 bars)
  [12, "<F Gm F Bb F Gm F Bb F Gm F Bb>"],
)
const bassline = arrange(
  [5, "<d2 g2 d2 bb2 ~>"],
  [2, "<f2 g2>"],
  [8, "<f2 g2 f2 bb2 f2 bb2 eb2 a2>"],
  [8, "<d2 g2 d2 bb2 f2 [g2@2 c2@2] f2 g2>"],
  [8, "<f2 g2 f2 bb2 f2 bb2 eb2 a2>"],
  [8, "<d2 g2 d2 bb2 f2 [g2@2 c2@2] f2 eb2>"],
  [8, "<d2 g2 d2 bb2 f2 d2 g2 c2>"],
  [8, "<f2 g2 f2 bb2 f2 bb2 eb2 a2>"],
  [8, "<d2 g2 d2 bb2 f2 [g2@2 c2@2] f2!2>"],
  [2, "<f2 g2>"],
  [12, "<f2 g2 f2 bb2 f2 g2 f2 bb2 f2 g2 f2 bb2>"],
)

// 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 The Beach Boys