Table of Contents

Class AudioParamDescriptor

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The AudioParamDescriptor dictionary of the Web Audio API specifies properties for AudioParam objects.

[ToObject]
public class AudioParamDescriptor
Inheritance
AudioParamDescriptor
Inherited Members

Remarks

It is used to create custom AudioParams on an AudioWorkletNode. If the underlying AudioWorkletProcessor has a AudioWorkletProcessor.ParameterDescriptors static getter, then the returned array of objects based on this dictionary is used internally by AudioWorkletNode constructor to populate its Parameters property accordingly.

-Web Audio API
-Using the Web Audio API

See also on MDN

Constructors

AudioParamDescriptor()

public AudioParamDescriptor()

Fields

AutomationRate

[Value("automationRate")]
public AutomationRate AutomationRate

Field Value

AutomationRate

DefaultValue

[Value("defaultValue")]
public Number DefaultValue

Field Value

Number

MaxValue

[Value("maxValue")]
public Number MaxValue

Field Value

Number

MinValue

[Value("minValue")]
public Number MinValue

Field Value

Number

Name

[Value("name")]
public required string Name

Field Value

string