package mm

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Operations on synthesizers.

class type t = object ... end

A synthesizer.

type synth = t

A synthesizer.

class create : (float -> float -> Mm_audio.Audio.Generator.t) -> t

Create a synthesizer from a function which creates a generator at given frequency and volume.

class create_mono : (float -> float -> Mm_audio.Audio.Mono.Generator.t) -> t

Same as create with a mono generator.

class sine : ?adsr:Mm_audio.Audio.Mono.Effect.ADSR.t -> int -> t

Sine synthesizer.

Square synthesizer.

class saw : ?adsr:Mm_audio.Audio.Mono.Effect.ADSR.t -> int -> t

Saw synthesizer.

Synths with only one note at a time.

module Multitrack : sig ... end

Multichannel synthesizers.