lideming

Results 4 issues of lideming

建议使用 WebAudio API 进行音频播放。 当前使用 `` 进行音频播放,调用 ` HTMLMediaElement.play()` 后,浏览器首先需要先进行下载和解码等初始化操作然后才开始播放声音。这些初始化工作的耗时是不稳定的,所以不能精确控制每段音频播放的起始时间,很难将两段音频完美地拼接播放。 WebAudio 的好处就多了,可以通过调整 gain 让两段音频平滑拼接,也可以用各种滤波器做别的效果…… 另外当前版本的音频状态管理有问题,#66 已经修了

enhancement

A not closed client with idle connections will prevent Deno from automatically exiting, after implementing idle timeout (#81). This is a problem, especially in short-running applications. For example: ```ts const...

Using: `2.0.0-beta.9` Latest release: `2.1.0`

format

The sql-builder currently use double-quotes for string values, but with `ANSI_QUOTES` set in `sql_mode`, MySQL will treat double-quotes as identifiers instead of strings. Related: https://github.com/denodrivers/mysql/issues/108