|
|
|
@ -62,8 +62,7 @@ function parseLyric(lrc) {
|
|
|
|
|
for (const timestamp of lyricTimestamps.matchAll(extractTimestampRegex)) {
|
|
|
|
|
const { min, sec, ms } = timestamp.groups;
|
|
|
|
|
const rawTime = timestamp[0];
|
|
|
|
|
const time =
|
|
|
|
|
Number(min) * 60 + Number(sec) + Number(ms ?? 0) * 0.001;
|
|
|
|
|
const time = Number(min) * 60 + Number(sec) + Number(ms ?? 0) * 0.001;
|
|
|
|
|
|
|
|
|
|
/** @type {ParsedLyric} */
|
|
|
|
|
const parsedLyric = { rawTime, time, content: trimContent(content) };
|
|
|
|
|