MMLL icon indicating copy to clipboard operation
MMLL copied to clipboard

MMLLQitch requires floating variable sr

Open Louismac opened this issue 5 years ago • 0 comments

MMLLQitch requires floating variable sr to be set in the surrounding javascript otherwise it fails. E.g in this example project, there is no real need to make sr and set it to sampleRate, but if its no included then theres errors

https://mimicproject.com/code/9ffb5eb7-b3dd-f19b-0a17-4e2b8494d16f

as a solution , looking at the listener code line 44 of MMLLQitch.js

self.m_SR = sr;

should be

self.m_SR = sampleRate;

Louismac avatar Jun 02 '20 15:06 Louismac