Mm_midi.Synth
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.
class square : ?adsr:Mm_audio.Audio.Mono.Effect.ADSR.t -> int -> t
Square synthesizer.
class saw : ?adsr:Mm_audio.Audio.Mono.Effect.ADSR.t -> int -> t
Saw synthesizer.
class monophonic : Mm_audio.Audio.Generator.t -> t
Synths with only one note at a time.
module Multitrack : sig ... end
Multichannel synthesizers.