Strudelify
Go Where You Wanna Go cover art

1967 · Up, Up And Away

Go Where You Wanna Go

The 5th Dimension

KeyG majorTempo114 bpm
0:00/0:00
// Go Where You Wanna Go — The 5th Dimension
// 114 bpm, 4/4, key G major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(114/4)

const chords = arrange(
  // intro (4 bars)
  [4, "<[G@2 C@2]!4>"],
  // verse (8 bars)
  [8, "<[G@2 C@2]!8>"],
  // chorus (16 bars)
  [16, "<[G@2 B7@2] Em C!2 D!2 G F Em D Em [A@2 D@2] G Em!2 D>"],
  // verse (8 bars)
  [8, "<[G@2 C@2]!8>"],
  // chorus (17 bars)
  [17, "<[G@2 B7@2] Em C!2 D!2 G F Em D Em [A@2 D@2] G Em Am D Eb>"],
  // verse (12 bars)
  [12, "<[Ab@2 Db@2]!12>"],
  // fadeout (4 bars)
  [4, "<[Ab@2 Db@2]!4>"],
)
const bassline = arrange(
  [4, "<[g2@2 c2@2]!4>"],
  [8, "<[g2@2 c2@2]!8>"],
  [16, "<[g2@2 b2@2] [e2@2 d2@2] c2!2 d2!2 g2 f2 e2 d2 e2 [a2@2 d2@2] g2 e2!2 d2>"],
  [8, "<[g2@2 c2@2]!8>"],
  [17, "<[g2@2 b2@2] [e2@2 d2@2] c2!2 d2!2 g2 f2 e2 d2 e2 [a2@2 d2@2] g2 e2 a2 d2 eb2>"],
  [12, "<[ab2@2 db2@2]!12>"],
  [4, "<[ab2@2 db2@2]!4>"],
)

// 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 5th Dimension