#chord #music-theory #music #parser #midi #music-notation

chordparser

A parser library to generate Jazz/Pop/Rock chords from string inputs

27 releases (stable)

new 2.1.6 Nov 16, 2024
2.0.7 Nov 15, 2024
1.2.1 Nov 10, 2024
1.1.0 Oct 16, 2024
0.1.2 Aug 9, 2024

#294 in Audio

Download history 26/week @ 2024-07-27 235/week @ 2024-08-03 486/week @ 2024-08-10 35/week @ 2024-08-17 16/week @ 2024-09-21 1/week @ 2024-09-28 136/week @ 2024-10-12 20/week @ 2024-10-19 1/week @ 2024-10-26 10/week @ 2024-11-02 1134/week @ 2024-11-09

1,194 downloads per month
Used in muzik

MIT license

125KB
3K SLoC

Chordparser

Demo

See our playground here

Overview

ChordParser is a library for parsing musical chords from a human readable string representation.
It is inspired by chordSymbol: https://www.npmjs.com/package/chord-symbol.
Said that, it implements its own rules and conventions, which can change in the future since this it is a work in progress project.
For now, the scope of the library is to parse chords from Pop, Rock, and Jazz music in relatively standard English notation.
Classical notation, as well as Latin or German notation, is not supported yet.

Chord struct

Once parsed the Chord struct can be used to get information about the chord.
This includes:

  • Root note of the chord
  • Bass note of the chord if any
  • Parsed descriptor of the chord
  • A normalized version of the input
  • Note literals
  • Intervals relative to root note
  • Semitones relative to root note

The chord is also serializable into JSON, can generate MIDI codes for its notes, and allows transposition from one key to another.

Parser rules

Since there isn't a full consensus on how chords should be written, any chord parser is by definition opinionated.
We try to get a good balance between rejecting all invalid notations and accept any possible chord representation.
Check the test cases in the /test folder to have a grasp of what chords can and cannot be parsed.

Voicing generation

The voicings module exposes a function to generate a set of MIDI notes from a Chord representing a voicing for it. The voicing is generated in a range from C1 to G4. The generator function accepts a lead note to generate the voicings around it, which allows chaining distinct chords smoothly.

Limitations

  • Parsed chord notes have enharmonically correct names when possible. For example, a B#9 chord will have C𝄪 as the ninth instead of D. Said that, triple flat/sharps are not suported since they add an unnecesasry complexity for very rare use cases.
  • When transposed, slash-bass notes (like C in Ab/C) may not be enharmonically correct.
  • The parser is not customizable for now, but it is expected to be in the future, for example:
    • Include or remove both custom and default validators.
    • Include or remove sets of allowed symbols.
    • Maybe allow other notations like Latin or German.

Examples

Checkout the example usage at the examples folder running:

  • cargo run --example parse-chord

Dependencies

~2.8–4.5MB
~88K SLoC