|
|
@ -1256,7 +1256,8 @@ func conventTTMLToLRC(ttml string) (string, error) { |
|
|
|
text = lyric.SelectAttr("text").Value |
|
|
|
text = lyric.SelectAttr("text").Value |
|
|
|
} |
|
|
|
} |
|
|
|
m += h * 60 |
|
|
|
m += h * 60 |
|
|
|
lrcLines = append(lrcLines, fmt.Sprintf("[%02d:%02d.%03d]%s", m, s, ms, text)) |
|
|
|
ms = ms / 10 |
|
|
|
|
|
|
|
lrcLines = append(lrcLines, fmt.Sprintf("[%02d:%02d.%02d]%s", m, s, ms, text)) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
return strings.Join(lrcLines, "\n"), nil |
|
|
|
return strings.Join(lrcLines, "\n"), nil |
|
|
|