@applemusic-like-lyrics/lyric 0.4.0 → 1.0.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -9
- package/dist/amll-lyric.cjs +1989 -0
- package/dist/amll-lyric.cjs.map +1 -0
- package/dist/amll-lyric.d.cts +219 -0
- package/dist/amll-lyric.d.mts +219 -0
- package/dist/amll-lyric.mjs +1968 -0
- package/dist/amll-lyric.mjs.map +1 -0
- package/package.json +49 -34
- package/LICENSE +0 -661
- package/pkg/amll_lyric.d.ts +0 -187
- package/pkg/amll_lyric.js +0 -9
- package/pkg/amll_lyric_bg.js +0 -585
- package/pkg/amll_lyric_bg.wasm +0 -0
- package/pkg/amll_lyric_bg.wasm.d.ts +0 -25
package/README.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
English / [简体中文](./README-CN.md)
|
|
4
4
|
|
|
5
|
+
This is a refactored version of the original lyrics pack. Docs not finished yet.
|
|
6
|
+
|
|
7
|
+
Below is the original docs.
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
5
11
|
> Warning: This is a personal project and is still under development. There may still be many issues, so please do not use it directly in production environments!
|
|
6
12
|
|
|
7
13
|

|
|
@@ -14,18 +20,20 @@ Since this module focuses only on lyric content, it discards all information unr
|
|
|
14
20
|
|
|
15
21
|
Lyric format support table:
|
|
16
22
|
|
|
17
|
-
| Source Format\Target Format
|
|
18
|
-
|
|
|
19
|
-
| LyRiC Format `.lrc`
|
|
20
|
-
| ESLyric Word-by-word Format `.lrc`
|
|
21
|
-
| NetEase Cloud Music Word-by-word Format `.yrc` | ✅
|
|
22
|
-
| QQ Music Word-by-word Format `.qrc`
|
|
23
|
-
| Lyricify Syllable Word-by-word Format `.lys`
|
|
24
|
-
| TTML Lyric Format `.ttml`
|
|
25
|
-
| ASS Subtitle Format `.ass`
|
|
23
|
+
| Source Format\Target Format | Parse Own Format | LyRiC Format `.lrc` | ESLyric Word-by-word Format `.lrc` | NetEase Cloud Music Word-by-word Format `.yrc` | QQ Music Word-by-word Format `.qrc` | Lyricify Syllable Word-by-word Format `.lys` | TTML Lyric Format `.ttml` | ASS Subtitle Format `.ass` |
|
|
24
|
+
| ---------------------------------------------- | ---------------- | ------------------- | ---------------------------------- | ---------------------------------------------- | ----------------------------------- | -------------------------------------------- | ------------------------- | -------------------------- |
|
|
25
|
+
| LyRiC Format `.lrc` | ✅ | / | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
|
|
26
|
+
| ESLyric Word-by-word Format `.lrc` | ✅ | ✅ | / | ✅ | ✅ | ✅ | ✅ | ✅ |
|
|
27
|
+
| NetEase Cloud Music Word-by-word Format `.yrc` | ✅ | ✅ [^1] | ✅ [^1] | / | ✅ | ✅ | ✅ | ✅ |
|
|
28
|
+
| QQ Music Word-by-word Format `.qrc` | ✅ | ✅ [^1] | ✅ [^1] | ✅ | / | ✅ | ✅ | ✅ |
|
|
29
|
+
| Lyricify Syllable Word-by-word Format `.lys` | ✅ | ✅ [^1] | ✅ [^1] | ✅ [^2] | ✅ [^2] | / | ✅ | ✅ |
|
|
30
|
+
| TTML Lyric Format `.ttml` | ✅ | ✅ [^1] | ✅ [^1] | ✅ [^2] | ✅ [^2] | ✅ [^3] | / | ✅ |
|
|
31
|
+
| ASS Subtitle Format `.ass` | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | / |
|
|
26
32
|
|
|
27
33
|
[^1]: Will lose word-by-word timing data, vocal attributes (background vocals, duet vocals) and AMLL metadata
|
|
34
|
+
|
|
28
35
|
[^2]: Will lose vocal attributes (background vocals, duet vocals) and AMLL metadata
|
|
36
|
+
|
|
29
37
|
[^3]: Will lose AMLL metadata
|
|
30
38
|
|
|
31
39
|
## Using with Core Lyric Component
|