Strudelify
Sanctify Yourself cover art

1986 · Once Upon A Time

Sanctify Yourself

Simple Minds

KeyG majorTempo128 bpm
0:00/0:00
// Sanctify Yourself — Simple Minds
// 128 bpm, 4/4, key G major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(128/4)

const chords = arrange(
  // intro (20 bars)
  [20, "<Gm7!6 F C Gm7!2 F C Gm7!2 F C Gm7!2 F C>"],
  // verse (12 bars)
  [12, "<G!2 C F G!2 C F G!2 C F>"],
  // bridge (6 bars)
  [6, "<Eb!2 F!2 Eb!2>"],
  // chorus (8 bars)
  [8, "<G C G C G C G C>"],
  // interlude (16 bars)
  [16, "<Gm7!2 F C Gm7!2 F C Gm7!2 F C Gm7!2 F C>"],
  // verse (12 bars)
  [12, "<G!2 C F G!2 C F G!2 C F>"],
  // bridge (6 bars)
  [6, "<Eb!2 F!2 Eb!2>"],
  // chorus (8 bars)
  [8, "<G C G C G!4>"],
  // solo (8 bars)
  [8, "<Gm!2 C!2 G!2 [Bb@3 C] C>"],
  // interlude (8 bars)
  [8, "<Gm7!2 F C Gm7!2 F C>"],
  // verse (12 bars)
  [12, "<G!2 C F G!2 C F G!2 C F>"],
  // bridge (6 bars)
  [6, "<Eb!2 F!2 Eb!2>"],
  // chorus (8 bars)
  [8, "<G C G C G C G C>"],
  // chorus (8 bars)
  [8, "<G C G C G C G C>"],
  // outro (20 bars)
  [20, "<G C G C G C G C G C G C G C G C G C G C>"],
)
const bassline = arrange(
  [20, "<g2!20>"],
  [12, "<g2 f2 e2 f2 g2 f2 e2 f2 g2 f2 e2 f2>"],
  [6, "<eb2!2 f2!2 eb2!2>"],
  [8, "<g2 c2 g2 c2 g2 c2 g2 c2>"],
  [16, "<g2!16>"],
  [12, "<g2 f2 e2 f2 g2 f2 e2 f2 g2 f2 e2 f2>"],
  [6, "<eb2!2 f2!2 eb2!2>"],
  [8, "<g2 c2 g2 c2 g2!4>"],
  [8, "<g2!2 c2!2 g2!2 [bb2@3 c2] c2>"],
  [8, "<g2!8>"],
  [12, "<g2 f2 e2 f2 g2 f2 e2 f2 g2 f2 e2 f2>"],
  [6, "<eb2!2 f2!2 eb2!2>"],
  [8, "<g2 c2 g2 c2 g2 c2 g2 c2>"],
  [8, "<g2 c2 g2 c2 g2 c2 g2 c2>"],
  [20, "<g2 c2 g2 c2 g2 c2 g2 c2 g2 c2 g2 c2 g2 c2 g2 c2 g2 c2 g2 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] [bd hh] [sd hh]").gain(0.8)

stack(keys, bass, drums)

More by Simple Minds