我正在使用Web Audio API库创建一个对象:
var player = new Pizzicato.Sound({
source: 'file',
options: {
path: 'file.mp3',
volume: 0.5
}
});
我要做的是在图像中突出显示类型名称o.Effects.StereoPanner
并将其存储在变量中,但我无法得到它。我可以使用player.effects[0]
到达效果数组但是它给了我整个对象而不是它的名字。我甚至无法将数组的元素作为player.effects[0] gives
undefined`来到达。 Àny关于如何获得该元素及其类型的线索?