AriesZzzz

Results 2 comments of AriesZzzz

> time: result[1] * 60 * 1000 + result[2] * 1000 + (result[3] || 0) * 10 > 把上面一段代码改为下面这句就可以了: > time: result[1] * 60 * 1000 + result[2] * 1000...

上述bug描述有误,跟自动转换没有关系,请看最新的 在lyric.js更改 ``` this.lines.push({ time: result[1] * 60 * 1000 + result[2] * 1000 + (parseInt(result[3]) || 0), txt: txt }); ``` 这个插件的针对`网易云音乐API`的返回歌词格式的时间计算有 bug,JS 字符串遇到 `*` 会自动转换成数字,但源码中最后一个加数没有遇到`*`,最后一个数会被当成字符串拼接在前面数字后面,所以计算错误。需要将源码中的上述转换 时分秒 到 毫秒...