Mm.Audio
Operations on audio data.
At given sample rate, number of samples in given amount of time.
At given sample rate, duration of given number of samples.
module Sample : sig ... end
Operations on samples.
module Note : sig ... end
Operations on notes.
module Mono : sig ... end
Operations on mono buffers (with only one channel).
type buffer = t
val create : int -> int -> t
create chans len
creates a buffer with chans
channels and len
samples as duration.
val make : int -> int -> float -> t
val length : t -> int
Length in samples.
Create a buffer with the same number of channels and duration as the given buffer.
val clear : t -> int -> int -> unit
Clear the buffer (sets all the samples to zero).
val channels : t -> int
Convert a buffer to a mono buffer by computing the mean of all channels.
Convert a mono buffer into a buffer. Notice that the original mono buffer is not copied an might thus be modified afterwards.
module U8 : sig ... end
module S16LE : sig ... end
module S16BE : sig ... end
module S24LE : sig ... end
module S32LE : sig ... end
module FLTP : sig ... end
val clip : t -> int -> int -> unit
val noise : t -> int -> int -> unit
val squares : t -> int -> int -> float
val copy_to_ba :
t ->
int ->
int ->
(float, Stdlib.Bigarray.float32_elt, Stdlib.Bigarray.c_layout)
Stdlib.Bigarray.Array1.t
array ->
unit
val copy_from_ba :
(float, Stdlib.Bigarray.float32_elt, Stdlib.Bigarray.c_layout)
Stdlib.Bigarray.Array1.t
array ->
t ->
int ->
int ->
unit
val of_ba :
(float, Stdlib.Bigarray.float32_elt, Stdlib.Bigarray.c_layout)
Stdlib.Bigarray.Array1.t
array ->
t
val to_ba :
t ->
int ->
int ->
(float, Stdlib.Bigarray.float32_elt, Stdlib.Bigarray.c_layout)
Stdlib.Bigarray.Array1.t
array
val copy_to_int16_ba :
t ->
int ->
int ->
(int, Stdlib.Bigarray.int16_signed_elt, Stdlib.Bigarray.c_layout)
Stdlib.Bigarray.Array1.t
array ->
unit
val copy_from_int16_ba :
(int, Stdlib.Bigarray.int16_signed_elt, Stdlib.Bigarray.c_layout)
Stdlib.Bigarray.Array1.t
array ->
t ->
int ->
int ->
unit
val of_int16_ba :
(int, Stdlib.Bigarray.int16_signed_elt, Stdlib.Bigarray.c_layout)
Stdlib.Bigarray.Array1.t
array ->
t
val to_int16_ba :
t ->
int ->
int ->
(int, Stdlib.Bigarray.int16_signed_elt, Stdlib.Bigarray.c_layout)
Stdlib.Bigarray.Array1.t
array
val amplify : float -> t -> int -> int -> unit
Amplify a portion of the buffer by a given coefficient.
val pan : float -> t -> int -> int -> unit
Pan a stereo buffer from left to right (the buffer should have exactly two channels!). The coefficient should be between -1.
and 1.
.
Add two buffers of the same length, storing the result in the first one.
Add to the first buffer, the second buffer multiplied by a coefficient.
module Buffer_ext : sig ... end
Buffers of variable size. These are particularly useful for temporary buffers.
module Ringbuffer : sig ... end
Circular ringbuffers.
module Ringbuffer_ext : sig ... end
Extensible ringbuffers.
module Analyze : sig ... end
module Effect : sig ... end
Audio effects.
module Generator : sig ... end
Sound generators.
module IO : sig ... end
Operation for reading and writing audio data from files, streams or devices.