Code Monkey home page Code Monkey logo

chordalpy's Introduction

ChordalPy

A simple python library to ingest and manipulate musical chords stored in plaintext format according to Christopher Harte's 2010 thesis.

Installation

python -m pip install ChordalPy

The format

The chords that this library can parse are in a specific plaintext format detailed here; however, here's a quick and dirty run down.

Each chord has three parts: the root, the intervals, and the bass. They are seperated with a colon and a slash like so

root:intervals/bass

Root

The root is simply any letter name. It could be 'C' or 'G#' or 'Fbbbbb'.

Intervals

The intervals section consists of a shorthand abbreviation for a common set of intervals followed by any changes to those intervals in parantheses. For example, a major triad with an added sharp sixth would be maj(#6). The added intervals can do one of:

  1. Add an interval to the existing shorthand.
  2. Modify (sharp or flat) an interval in the existing shorthand.
  3. Remove an interval in the existing shorthand (notated with a * before the interval to be removed).

The list of shorthands can be found on page 105 of the earlier referenced PDF.

Bass

The bass is an interval degree (any digit 1-9) along with 0 or more modifiers (# or b)

A note on intervals

There is an interesting quirk to musical intervals that means they cannot be entirely expressed with only one digit. Rather, they requrie a tuple of two integers.

When looking through the source of this library, you will often find intervals notated as such. The first integer represents the number of letter names between the notes (for instance, in the interval from C to G the first integer would be 5) and the second integer is the number of half steps (so in the interval from C to G the second integer would be 7).

Using this method you can see how you would distiniguish between two enharmonic pitches. For example, C to E and C to Fb. The interval from C to E would be (3, 4) while the interval from C to Fb would be (4, 4).

Library Usage

Parse a chord and print its members

import ChordalPy

my_chord = ChordalPy.parse_chord("C:maj")
spelling = my_chord.get_spelling()
print("C:maj has notes %s" % spelling)

Instantiate a chord directly

import ChordalPy

# C major in first inversion (C:maj/3)
root = "C"
intervals = [(1, 0), (3, 4), (5, 7)]
bass = "E"

my_chord = ChordalPy.Chord(root, intervals, bass)

Chord Class

Print a string representation of a chord

print(str(my_chord))
# C:[(1, 0), (3, 4), (5, 7)]/E

Print the spelling of a chord

print(my_chord.get_spelling())
# ['C', 'E', 'G']

Print a binary note array of a chord

print(my_chord.get_note_array())
# [1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0]

Print a pseudohash of a chord's intervals

print(my_chord.get_pseudo_hash())
# ecca

Find the note a given interval above a chord's root

print(my_chord.note_from_interval([5, 8]))
# ecca

See Also

Projects

Chordgen.com - A web tool that uses machine learning to generate chord progressions. The machine learning model was trained on data created with this library.

Datasets

A non-exhaustive list of datasets that use a format parsable by this library:

chordalpy's People

Contributors

p-bibs avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.