GainNode
The GainNode interface represents a change in volume. It is an AudioNode audio-processing module that causes a given gain to be applied to the input data before its propagation to the output. A GainNode always has exactly one input and one output, both with the same number of channels.
The gain is a unitless value, changing with time, that is multiplied to each corresponding sample of all input channels. If modified, the new gain is instantly applied, causing unaesthetic 'clicks' in the resulting audio. To prevent this from happening, never change the value directly but use the exponential interpolation methods on the AudioParam interface.
  
| Number of inputs | 1 |  
|---|---|
| Number of outputs | 1 |  
| Channel count mode | "max" |  
| Channel count | 
2 (not used in the default count mode) |  
| Channel interpretation | "speakers" |  
Constructor
GainNode()-  
Creates and returns a new
GainNodeobject. As an alternative, you can use theBaseAudioContext.createGain()factory method; see Creating an AudioNode. 
Properties
Inherits properties from its parent, AudioNode.
- 
GainNode.gainRead only -  
Is an a-rate
AudioParamrepresenting the amount of gain to apply. You have to setAudioParam.valueor use the methods ofAudioParamto change the effect of gain. 
Methods
No specific method; inherits methods from its parent, AudioNode.
Example
See BaseAudioContext.createGain() for example code showing how to use an AudioContext to create a GainNode.
Specifications
| Specification | 
|---|
| Web Audio API  # GainNode  | 
Browser compatibility
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
GainNode | 
14  | 
12  | 
25  | 
No  | 
15  | 
6  | 
≤37  | 
18  | 
25  | 
14  | 
Yes  | 
1.0  | 
GainNode | 
 55 
Before Chrome 59, the default values were not supported. 
 | 
79  | 
53  | 
No  | 
42  | 
14.1  | 
 55 
Before Chrome 59, the default values were not supported. 
 | 
 55 
Before Chrome 59, the default values were not supported. 
 | 
53  | 
42  | 
14.5  | 
 6.0 
Before Samsung Internet 7.0, the default values were not supported. 
 | 
gain | 
14  | 
12  | 
25  | 
No  | 
15  | 
6  | 
≤37  | 
18  | 
25  | 
14  | 
Yes  | 
1.0  | 
See also
    © 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
    https://developer.mozilla.org/en-US/docs/Web/API/GainNode