Strudelify
Time Will Reveal cover art

1984 · In A Special Way

Time Will Reveal

Debarge

KeyC majorTempo65 bpm
0:00/0:00
// Time Will Reveal — Debarge
// 65 bpm, 4/4, key C major. Source: mcgill.
// Generated by strudelify. One cycle = one bar.
setcpm(65/4)

const chords = arrange(
  // intro (2 bars)
  [2, "<[Fm@2 C@2]!2>"],
  // verse (6 bars)
  [6, "<[Fm6@2 C^7@2]!2 [Fm6@2 C^9@2] [Fm6@2 Bm7 E7#11] [Am7 D7 G7@2] [Am7 D7 Bm7@2]>"],
  // verse (7 bars)
  [7, "<[Fm6@2 C^7@2]!2 [Fm6@2 C^9@2] [Fm6@2 Bm7 E7#11] [Am7 D7 G7sus G7]!2 [Am7 D7 ~@2]>"],
  // pre-chorus (2 bars)
  [2, "<[G^7 C7sus F^7 Bb7sus] [Dm7 Em7 F^7 G7sus]>"],
  // chorus (5 bars)
  [5, "<[Csus C Em7@2] [F^7@2 F G#o] [Am7@2 Em7@2] [F#m7@2 B7 B7#5] [Em7 Am7 Dm7 G7]>"],
  // interlude (2 bars)
  [2, "<[Fm@2 C^7@2] [Fm6@2 C^7@2]>"],
  // verse (7 bars)
  [7, "<[Fm6@2 C^7@2]!2 [Fm6@2 C^9@2] [Fm6@2 Bm7 E7#11] [Am7 D7 G7sus G7]!2 [Am7 D7 ~@2]>"],
  // pre-chorus (2 bars)
  [2, "<[G^7 C7sus F^7 Bb7sus] [Dm7 Em7 F^7 G7sus]>"],
  // chorus (5 bars)
  [5, "<[Csus C Em7@2] [F^7@2 F G#o] [Am7@2 Em7@2] [F#m7@2 B7 B7#5] [Em7 Am7 Dm7 G7]>"],
  // chorus (5 bars)
  [5, "<[Csus C Em7@2] [F^7@2 F G#o] [Am7@2 Em7@2] [F#m7@2 B7 B7#5] [Em7 Am7 Dm7 G7]>"],
  // verse (9 bars)
  [9, "<[Fm@2 C^7@2] [Fm6@2 C^7@2] [Fm6@2 Fm C]!3 [Fm Fm6 Bm7 Em7] [Am7 D7 G7sus G7]!2 [Am7 D7 ~@2]>"],
  // pre-chorus (2 bars)
  [2, "<[G^7 C7sus F^7 Bb7sus] [Dm7 Em7 F^7 G7sus]>"],
  // chorus (5 bars)
  [5, "<[Csus C Em7@2] [F^7@2 F G#o] [Am7@2 Em7@2] [F#m7@2 B7 B7#5] [Em7 Am7 Dm7 G7]>"],
  // chorus (2 bars)
  [2, "<[Csus C Em7@2] [F^7@2 F G#o]>"],
  // fadeout (3 bars)
  [3, "<[Am7@2 Em7@2] [F#m7@2 B7 B7#5] [Em7 Am7 Dm7 G7]>"],
  // chorus (3 bars)
  [3, "<[Csus C Em7@2] [F^7@2 F G#o] [Am7@2 Em7@2]>"],
)
const bassline = arrange(
  [2, "<c2!2>"],
  [6, "<c2!3 [c2@2 b2 e2] [a2 d2 g2@2] [a2 d2 c2@2]>"],
  [7, "<c2!3 [c2@2 b2 e2] [a2 d2 g2@2]!2 [a2 d2 ~@2]>"],
  [2, "<[g2 c2 f2 bb2] [d2 e2 f2 g2]>"],
  [5, "<[c2@2 e2@2] [f2@2 g2 g#2] [a2@2 e2@2] [f#2@2 b2 d#2] [e2 a2 d2 g2]>"],
  [2, "<c2!2>"],
  [7, "<c2!3 [c2@2 b2 e2] [a2 d2 g2@2]!2 [a2 d2 ~@2]>"],
  [2, "<[g2 c2 f2 bb2] [d2 e2 f2 g2]>"],
  [5, "<[c2@2 e2@2] [f2@2 g2 g#2] [a2@2 e2@2] [f#2@2 b2 d#2] [e2 a2 d2 g2]>"],
  [5, "<[c2@2 e2@2] [f2@2 g2 g#2] [a2@2 e2@2] [f#2@2 b2 d#2] [e2 a2 d2 g2]>"],
  [9, "<c2!5 [c2@2 b2 e2] [a2 d2 g2@2]!2 [a2 d2 ~@2]>"],
  [2, "<[g2 c2 f2 bb2] [d2 e2 f2 g2]>"],
  [5, "<[c2@2 e2@2] [f2@2 g2 g#2] [a2@2 e2@2] [f#2@2 b2 d#2] [e2 a2 d2 g2]>"],
  [2, "<[c2@2 e2@2] [f2@2 g2 g#2]>"],
  [3, "<[a2@2 e2@2] [f#2@2 b2 d#2] [e2 a2 d2 g2]>"],
  [3, "<[c2@2 e2@2] [f2@2 g2 g#2] [a2@2 e2@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)