Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Parser for LRC and enhanced LRC. Here is a playground.
npm install clrc
import { parse } from 'clrc';
const lrc = `[ar:张叶蕾]
something wrong
[00:54.04]每一辆飞车彻夜向前开
[00:58.22]飞到了路崖边永不回来`;
console.log(parse(lrc));
The output is:
[
{
"lineNumber": 0,
"raw": "[ar:张叶蕾]",
"type": "metadata",
"key": "ar",
"value": "张叶蕾"
},
{
"lineNumber": 1,
"raw": "something wrong",
"type": "invalid"
},
{
"lineNumber": 2,
"raw": "[00:54.04]每一辆飞车彻夜向前开",
"type": "lyric",
"startMillisecond": 54040,
"content": "每一辆飞车彻夜向前开"
},
{
"lineNumber": 3,
"raw": "[00:58.22]飞到了路崖边永不回来",
"type": "lyric",
"startMillisecond": 58220,
"content": "飞到了路崖边永不回来"
}
]
parse lrc string to array.
parse enhanced lrc string to array. here is a example:
[ti: Somebody to Love]
[00:00.00] <00:00.04> When <00:00.16> the <00:00.82> truth <00:01.29> is <00:01.63> found <00:03.09> to <00:03.37> be <00:05.92> lies
the output is:
[
{
"lineNumber": 0,
"raw": "[ti: Somebody to Love]",
"type": "metadata",
"key": "ti",
"value": " Somebody to Love"
},
{
"lineNumber": 1,
"raw": "[00:00.00] <00:00.04> When <00:00.16> the <00:00.82> truth <00:01.29> is <00:01.63> found <00:03.09> to <00:03.37> be <00:05.92> lies ",
"type": "enhanced_lyric",
"startMillisecond": 0,
"content": " <00:00.04> When <00:00.16> the <00:00.82> truth <00:01.29> is <00:01.63> found <00:03.09> to <00:03.37> be <00:05.92> lies ",
"words": [
{
"index": 0,
"raw": "<00:00.04> When ",
"startMillisecond": 40,
"content": " When "
},
{
"index": 1,
"raw": "<00:00.16> the ",
"startMillisecond": 160,
"content": " the "
},
{
"index": 2,
"raw": "<00:00.82> truth ",
"startMillisecond": 820,
"content": " truth "
},
{
"index": 3,
"raw": "<00:01.29> is ",
"startMillisecond": 1290,
"content": " is "
},
{
"index": 4,
"raw": "<00:01.63> found ",
"startMillisecond": 1630,
"content": " found "
},
{
"index": 5,
"raw": "<00:03.09> to ",
"startMillisecond": 3090,
"content": " to "
},
{
"index": 6,
"raw": "<00:03.37> be ",
"startMillisecond": 3370,
"content": " be "
},
{
"index": 7,
"raw": "<00:05.92> lies ",
"startMillisecond": 5920,
"content": " lies "
}
]
}
]
types of line:
LineType.INVALID
means it's invalid lineLineType.METADATA
means it's metadata lineLineType.LYRIC
means it's lyric lineLineType.ENHANCED_LYRIC
means it's enhanced lyric lineFAQs
Parser for LRC and enhanced LRC.
We found that clrc demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.