Reputation: 53
is there a way to access the HTMLMediaElement from a Howler.js sound? I need the HTMLMediaElement for the WebAudioAPI.
Current Code:
this.audio = new Howl({
src: this.url
})
Upvotes: 2
Views: 661
Reputation: 19
For anyone like me still looking:
var node = audio._sounds[0]._node
//node is an HTMLAudioElement
Found it from here.
Upvotes: 1