Liking cljdoc? Tell your friends :D

web.audio.AudioParam

The Web Audio API's AudioParam interface represents an audio-related usually a parameter of an web.audio.AudioNode (such as GainNode.gain).

The Web Audio API's AudioParam interface represents an audio-related
usually a parameter of an `web.audio.AudioNode` (such as `GainNode.gain`).
raw docstring

cancel-and-hold-at-timecljs

(cancel-and-hold-at-time this cancel-time)

Method.

The cancelAndHoldAtTime() property of the web.audio.AudioParam cancels all scheduled future changes to the AudioParam but holds value at a given time until further changes are made using other

var audioParam = AudioParam.cancelAndHoldAtTime(cancelTime)

See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/cancelAndHoldAtTime

Method.

The cancelAndHoldAtTime() property of the `web.audio.AudioParam`
cancels all scheduled future changes to the AudioParam but holds
value at a given time until further changes are made using other

`var audioParam = AudioParam.cancelAndHoldAtTime(cancelTime)`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/cancelAndHoldAtTime`
sourceraw docstring

cancel-scheduled-valuescljs

(cancel-scheduled-values this start-time)

Method.

A reference to this AudioParam object. In some older implementations method returns void.

var AudioParam = AudioParam.cancelScheduledValues(startTime)

See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/cancelScheduledValues

Method.

A reference to this AudioParam object. In some older implementations
method returns void.

`var AudioParam = AudioParam.cancelScheduledValues(startTime)`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/cancelScheduledValues`
sourceraw docstring

default-valuecljs

(default-value this)

Property.

[Read Only]

The defaultValue read-only property of the web.audio.AudioParam represents the initial value of the attributes as defined by specific web.audio.AudioNode creating the AudioParam.

var defaultVal = audioParam.defaultValue;

See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/defaultValue

Property.

[Read Only]

The defaultValue read-only property of the `web.audio.AudioParam`
represents the initial value of the attributes as defined by
specific `web.audio.AudioNode` creating the AudioParam.

`var defaultVal = audioParam.defaultValue;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/defaultValue`
sourceraw docstring

exponential-ramp-to-value-at-timecljs

(exponential-ramp-to-value-at-time this value end-time)

Method.

A reference to this AudioParam object. In some browsers older of this interface return void.

var AudioParam = AudioParam.exponentialRampToValueAtTime(value, endTime)

See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/exponentialRampToValueAtTime

Method.

A reference to this AudioParam object. In some browsers older
of this interface return void.

`var AudioParam = AudioParam.exponentialRampToValueAtTime(value, endTime)`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/exponentialRampToValueAtTime`
sourceraw docstring

linear-ramp-to-value-at-timecljs

(linear-ramp-to-value-at-time this value end-time)

Method.

A reference to this AudioParam object. In some browsers older of this interface return void.

var AudioParam = AudioParam.linearRampToValueAtTime(value, endTime)

See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/linearRampToValueAtTime

Method.

A reference to this AudioParam object. In some browsers older
of this interface return void.

`var AudioParam = AudioParam.linearRampToValueAtTime(value, endTime)`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/linearRampToValueAtTime`
sourceraw docstring

max-valuecljs

(max-value this)

Property.

[Read Only]

The maxValue read-only property of the web.audio.AudioParam represents the maximum possible value for the parameter's nominal range.

var maxVal = audioParam.maxValue;

See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/maxValue

Property.

[Read Only]

The maxValue read-only property of the `web.audio.AudioParam`
represents the maximum possible value for the parameter's nominal
range.

`var maxVal = audioParam.maxValue;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/maxValue`
sourceraw docstring

min-valuecljs

(min-value this)

Property.

[Read Only]

The minValue read-only property of the web.audio.AudioParam represents the minimum possible value for the parameter's nominal range.

var minVal = audioParam.minValue;

See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/minValue

Property.

[Read Only]

The minValue read-only property of the `web.audio.AudioParam`
represents the minimum possible value for the parameter's nominal
range.

`var minVal = audioParam.minValue;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/minValue`
sourceraw docstring

set-target-at-timecljs

(set-target-at-time this target start-time time-constant)

Method.

The setTargetAtTime() method of the web.audio.AudioParam interface the start of a gradual change to the AudioParam value. This is for decay or release portions of ADSR envelopes.

var paramRef = param.setTargetAtTime(target, startTime, timeConstant);

See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/setTargetAtTime

Method.

The setTargetAtTime() method of the `web.audio.AudioParam` interface
the start of a gradual change to the AudioParam value. This is
for decay or release portions of ADSR envelopes.

`var paramRef = param.setTargetAtTime(target, startTime, timeConstant);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/setTargetAtTime`
sourceraw docstring

set-value!cljs

(set-value! this val)

Property.

The Web Audio API's web.audio.AudioParam interface property gets or sets the value of this web.audio.AudioParam at the time.

var curValue = audioParam.value; audioParam.value = newValue;

See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/value

Property.

The Web Audio API's `web.audio.AudioParam` interface property
gets or sets the value of this `web.audio.AudioParam` at the
time.

`var curValue = audioParam.value;
audioParam.value = newValue;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/value`
sourceraw docstring

set-value-at-timecljs

(set-value-at-time this value start-time)

Method.

The setValueAtTime() method of the web.audio.AudioParam interface an instant change to the AudioParam value at a precise time, measured against AudioContext.currentTime. The new value is in the value parameter.

var AudioParam = AudioParam.setValueAtTime(value, startTime)

See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/setValueAtTime

Method.

The setValueAtTime() method of the `web.audio.AudioParam` interface
an instant change to the AudioParam value at a precise time,
measured against `AudioContext.currentTime`. The new value is
in the value parameter.

`var AudioParam = AudioParam.setValueAtTime(value, startTime)`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/setValueAtTime`
sourceraw docstring

set-value-curve-at-timecljs

(set-value-curve-at-time this values start-time duration)

Method.

The setValueCurveAtTime() method of the web.audio.AudioParam schedules the parameter's value to change following a curve defined a list of values.

var paramRef = param.setValueCurveAtTime(values, startTime, duration);

See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/setValueCurveAtTime

Method.

The setValueCurveAtTime() method of the `web.audio.AudioParam`
schedules the parameter's value to change following a curve defined
a list of values.

`var paramRef = param.setValueCurveAtTime(values, startTime, duration);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/setValueCurveAtTime`
sourceraw docstring

valuecljs

(value this)

Property.

The Web Audio API's web.audio.AudioParam interface property gets or sets the value of this web.audio.AudioParam at the time.

var curValue = audioParam.value; audioParam.value = newValue;

See also: https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/value

Property.

The Web Audio API's `web.audio.AudioParam` interface property
gets or sets the value of this `web.audio.AudioParam` at the
time.

`var curValue = audioParam.value;
audioParam.value = newValue;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/AudioParam/value`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close