Module Music.Ctrl

Music control.

type t = [
  1. | `Tempo of Q.t
    (*

    Interpret with tempo multiplier.

    *)
  2. | `Transp of Pitch.rel
    (*

    Interpret transposed.

    *)
  3. | `Instrument of Instrument.t
    (*

    Interpet with instrument.

    *)
  4. | `Phrase of Phrase.t
    (*

    Interpret with phrasing.

    *)
  5. | `Player of string
    (*

    Not implemented

    *)
  6. | `Key_sig of Pitch.Class.t * Mode.t
    (*

    Not implemented

    *)
]

The type for music control.