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
})
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
})
For anyone like me still looking:
var node = audio._sounds[0]._node
//node is an HTMLAudioElement
Found it from here.