Strudelify
I Really Don't Want To Know cover art

1970 · Elvis Country

I Really Don't Want To Know

Elvis Presley

KeyC majorTempo79 bpm
0:00/0:00
// I Really Don't Want To Know — Elvis Presley
// 79 bpm, 3/4, key C major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(79/3)

const chords = arrange(
  // intro (4 bars)
  [4, "<C G7 [C@2 F^7] C>"],
  // verse (16 bars)
  [16, "<C F C!3 E7 F!3 F#o C [Am@2 Fm] G G7 [C@2 F] C>"],
  // verse (16 bars)
  [16, "<C F C!3 E7 F!3 F#o C [Am@2 Fm] G G7 C!2>"],
  // bridge (16 bars)
  [16, "<C7!2 F!2 C7!2 F!2 D7!2 G!2 D7!2 G7!2>"],
  // verse (16 bars)
  [16, "<C F C!3 E7 F!3 F#o C [Am@2 Fm] G G7 F C>"],
)
const bassline = arrange(
  [4, "<c2 g2 [c2@2 f2] c2>"],
  [16, "<c2 f2 c2!3 e2 f2!3 f#2 g2 [a2@2 ab2] g2!2 [c2@2 f2] c2>"],
  [16, "<c2 f2 c2!3 e2 f2!3 f#2 g2 [a2@2 ab2] g2!2 c2!2>"],
  [16, "<c2!2 f2!2 c2!2 f2!2 d2!2 g2!2 d2!2 g2!2>"],
  [16, "<c2 f2 c2!3 e2 f2!3 f#2 g2 [a2@2 ab2] g2!2 f2 c2>"],
)

// 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]").gain(0.8)

stack(keys, bass, drums)

More by Elvis Presley