PannerNode.panningModel
The panningModel
property of the PannerNode
interface is an enumerated value determining which spatialisation algorithm to use to position the audio in 3D space.
The possible values are:
-
equalpower
: Represents the equal-power panning algorithm, generally regarded as simple and efficient.equalpower
is the default value. -
HRTF
: Renders a stereo output of higher quality thanequalpower
— it uses a convolution with measured impulse responses from human subjects.
Syntax
var audioCtx = new AudioContext(); var panner = audioCtx.createPanner(); panner.panningModel = 'HRTF';
Value
A enum — see PanningModelType
.
Example
See BaseAudioContext.createPanner()
for example code.
Specifications
Specification |
---|
Web Audio API # dom-pannernode-panningmodel |
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 | |
panningModel |
14 |
12 |
25 |
No |
15 |
6 |
≤37 |
18 |
25 |
14 |
6 |
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/PannerNode/panningModel