UNPKG

music-metadata

Version:

Music metadata parser for Node.js, supporting virtual any audio and tag format.

8 lines (7 loc) 232 B
import { type ILyricsTag } from '../type.js'; /** * Parse LRC (Lyrics) formatted text * Ref: https://en.wikipedia.org/wiki/LRC_(file_format) * @param lrcString */ export declare function parseLrc(lrcString: string): ILyricsTag;