I runned the demo on a server and ik works perfect for short audio recordings. But when I record a sample that is longer than 22 seconds, nothing happens.
Looking in the debugger I get an Uncaught RangeError: Maximum call stack size exceeded.
I recorded some new long samples to find out what happend:
spxdata = spxcodec.encode(shorts, true); (line 1785 audiorecorder.js)
The duration of this function takes over 40 seconds for a clip of 25 seconds, but it continues.
var result = oggdata.mux([spxhdr, spxcmt, spxdata]); (line 1811 audiorecorder.js)
This call cause the problem. The rangeerror is raised at line 1723 in audiorecorder.js
I runned the demo on a server and ik works perfect for short audio recordings. But when I record a sample that is longer than 22 seconds, nothing happens.
Looking in the debugger I get an Uncaught RangeError: Maximum call stack size exceeded. I recorded some new long samples to find out what happend:
Hope you can help me out!