Hi,
I've implemented a Node based Aurora player, which plays FLAC and (some!)MP3. I added seek functionality last night by simply using player.seek() but I get this error:
TypeError: Cannot call method 'once' of undefined at Player.seek (/Users/rich/Development/AV/player.js:132:18)
The undefined object is a queue object :
132 : this.queue.once('ready', (function(_this) {
Which I assume is internal to the player as I haven't created or initialized any form of queue.
Have I missed something in the node environment?
Thanks
Rich
Hi,
I've implemented a Node based Aurora player, which plays FLAC and (some!)MP3. I added seek functionality last night by simply using player.seek() but I get this error:
TypeError: Cannot call method 'once' of undefined at Player.seek (/Users/rich/Development/AV/player.js:132:18)The undefined object is a queue object :
132 :
this.queue.once('ready', (function(_this) {Which I assume is internal to the player as I haven't created or initialized any form of queue.
Have I missed something in the node environment?
Thanks
Rich