Carlos Aguilar

Results 2 comments of Carlos Aguilar

Hey, @cliffordkleinsr 👋 I've been really busy lately with the project for the company I work for and haven't found time to update this myself. I will find some time...

I think the problem is with this line: [`AudioService.js#L135`](https://github.com/remsky/Kokoro-FastAPI/blob/2c7e1e8c0bea243add560f58f5c93010d73b5ee7/web/src/services/AudioService.js#L135) ```javascript if (this.mediaSource.readyState === 'open') { this.mediaSource.endOfStream(); } ``` It's calling `this.mediaSource.endOfStream()` with `this.sourceBuffer.updating == true`, [which is not allowed](https://developer.mozilla.org/en-US/docs/Web/API/MediaSource/endOfStream#exceptions). Based...