mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 10:54:55 +08:00
Merge branch 'dev' into plugin
This commit is contained in:
@@ -12,7 +12,7 @@
|
|||||||
<Identity
|
<Identity
|
||||||
Name="37412.BetterLyrics"
|
Name="37412.BetterLyrics"
|
||||||
Publisher="CN=E1428B0E-DC1D-4EA4-ACB1-4556569D5BA9"
|
Publisher="CN=E1428B0E-DC1D-4EA4-ACB1-4556569D5BA9"
|
||||||
Version="1.2.253.0" />
|
Version="1.2.256.0" />
|
||||||
|
|
||||||
<mp:PhoneIdentity PhoneProductId="ca4a4830-fc19-40d9-b823-53e2bff3d816" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
|
<mp:PhoneIdentity PhoneProductId="ca4a4830-fc19-40d9-b823-53e2bff3d816" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
|
||||||
|
|
||||||
|
|||||||
@@ -19,9 +19,10 @@ namespace BetterLyrics.WinUI3.Extensions
|
|||||||
new LyricsLine
|
new LyricsLine
|
||||||
{
|
{
|
||||||
StartMs = 0,
|
StartMs = 0,
|
||||||
EndMs = (int)TimeSpan.FromMinutes(99).TotalMilliseconds,
|
EndMs = (int)TimeSpan.FromSeconds(30).TotalMilliseconds,
|
||||||
PrimaryText = "● ● ●",
|
PrimaryText = "● ● ●",
|
||||||
PrimarySyllables = [new BaseLyrics { Text = "● ● ●", StartMs = 0, EndMs = (int)TimeSpan.FromMinutes(99).TotalMilliseconds }],
|
PrimarySyllables = [new BaseLyrics { Text = "● ● ●", StartMs = 0, EndMs = (int)TimeSpan.FromSeconds(30).TotalMilliseconds }],
|
||||||
|
IsPrimaryHasRealSyllableInfo = true,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
LanguageCode = "N/A",
|
LanguageCode = "N/A",
|
||||||
|
|||||||
@@ -68,11 +68,17 @@ namespace BetterLyrics.WinUI3.Logic
|
|||||||
for (int i = safeStart; i <= safeEnd; i++)
|
for (int i = safeStart; i <= safeEnd; i++)
|
||||||
{
|
{
|
||||||
var line = lines[i];
|
var line = lines[i];
|
||||||
|
|
||||||
var lineHeight = line.PrimaryLineHeight;
|
var lineHeight = line.PrimaryLineHeight;
|
||||||
|
|
||||||
if (lineHeight == null || lineHeight <= 0) continue;
|
if (lineHeight == null || lineHeight <= 0) continue;
|
||||||
|
|
||||||
|
bool isWordAnimationEnabled = lyricsEffect.WordByWordEffectMode switch
|
||||||
|
{
|
||||||
|
Enums.WordByWordEffectMode.Auto => line.IsPrimaryHasRealSyllableInfo,
|
||||||
|
Enums.WordByWordEffectMode.Always => true,
|
||||||
|
Enums.WordByWordEffectMode.Never => false,
|
||||||
|
_ => line.IsPrimaryHasRealSyllableInfo
|
||||||
|
};
|
||||||
|
|
||||||
double targetCharFloat = lyricsEffect.IsLyricsFloatAnimationAmountAutoAdjust
|
double targetCharFloat = lyricsEffect.IsLyricsFloatAnimationAmountAutoAdjust
|
||||||
? lineHeight.Value * 0.1
|
? lineHeight.Value * 0.1
|
||||||
: lyricsEffect.LyricsFloatAnimationAmount;
|
: lyricsEffect.LyricsFloatAnimationAmount;
|
||||||
@@ -83,7 +89,7 @@ namespace BetterLyrics.WinUI3.Logic
|
|||||||
? 1.15
|
? 1.15
|
||||||
: lyricsEffect.LyricsScaleEffectAmount / 100.0;
|
: lyricsEffect.LyricsScaleEffectAmount / 100.0;
|
||||||
|
|
||||||
var maxAnimationDurationMs = Math.Max(line.EndMs - currentPositionMs, 0);
|
var maxAnimationDurationMs = Math.Max(line.EndMs ?? 0 - currentPositionMs, 0);
|
||||||
|
|
||||||
bool isSecondaryLinePlaying = line.GetIsPlaying(currentPositionMs);
|
bool isSecondaryLinePlaying = line.GetIsPlaying(currentPositionMs);
|
||||||
bool isSecondaryLinePlayingChanged = line.IsPlayingLastFrame != isSecondaryLinePlaying;
|
bool isSecondaryLinePlayingChanged = line.IsPlayingLastFrame != isSecondaryLinePlaying;
|
||||||
@@ -176,7 +182,7 @@ namespace BetterLyrics.WinUI3.Logic
|
|||||||
line.AngleTransition.SetDelay(yScrollDelay);
|
line.AngleTransition.SetDelay(yScrollDelay);
|
||||||
line.AngleTransition.Start(
|
line.AngleTransition.Start(
|
||||||
(isFanEnabled && !isMouseScrolling) ?
|
(isFanEnabled && !isMouseScrolling) ?
|
||||||
Math.PI * (fanAngleRad / 180.0) * distanceFactor * (i > primaryPlayingLineIndex ? 1 : -1) :
|
fanAngleRad * distanceFactor * (i > primaryPlayingLineIndex ? 1 : -1) :
|
||||||
0);
|
0);
|
||||||
|
|
||||||
line.YOffsetTransition.SetEasingType(canvasYScrollTransition.EasingType);
|
line.YOffsetTransition.SetEasingType(canvasYScrollTransition.EasingType);
|
||||||
@@ -187,7 +193,9 @@ namespace BetterLyrics.WinUI3.Logic
|
|||||||
line.YOffsetTransition.Start(targetYScrollOffset);
|
line.YOffsetTransition.Start(targetYScrollOffset);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isLayoutChanged || isSecondaryLinePlayingChanged)
|
if (isWordAnimationEnabled)
|
||||||
|
{
|
||||||
|
if (isSecondaryLinePlayingChanged)
|
||||||
{
|
{
|
||||||
// 辉光动画
|
// 辉光动画
|
||||||
if (isGlowEnabled && lyricsEffect.LyricsGlowEffectScope == Enums.LyricsEffectScope.LineStartToCurrentChar
|
if (isGlowEnabled && lyricsEffect.LyricsGlowEffectScope == Enums.LyricsEffectScope.LineStartToCurrentChar
|
||||||
@@ -275,11 +283,11 @@ namespace BetterLyrics.WinUI3.Logic
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 使动画步进一帧
|
|
||||||
foreach (var renderChar in line.PrimaryRenderChars)
|
foreach (var renderChar in line.PrimaryRenderChars)
|
||||||
{
|
{
|
||||||
renderChar.Update(elapsedTime);
|
renderChar.Update(elapsedTime);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
line.Update(elapsedTime);
|
line.Update(elapsedTime);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -215,7 +215,7 @@ namespace BetterLyrics.WinUI3.Logic
|
|||||||
lanesEndMs.Add(0);
|
lanesEndMs.Add(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
lanesEndMs[assignedLane] = end;
|
lanesEndMs[assignedLane] = end ?? 0;
|
||||||
line.LaneIndex = assignedLane;
|
line.LaneIndex = assignedLane;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ namespace BetterLyrics.WinUI3.Logic
|
|||||||
|
|
||||||
if (line == null) return state;
|
if (line == null) return state;
|
||||||
|
|
||||||
double lineEndMs = line.EndMs;
|
double lineEndMs = line.EndMs ?? 0;
|
||||||
|
|
||||||
// 还没到
|
// 还没到
|
||||||
if (currentTimeMs < line.StartMs) return state;
|
if (currentTimeMs < line.StartMs) return state;
|
||||||
@@ -91,7 +91,7 @@ namespace BetterLyrics.WinUI3.Logic
|
|||||||
switch (wordByWordEffectMode)
|
switch (wordByWordEffectMode)
|
||||||
{
|
{
|
||||||
case WordByWordEffectMode.Auto:
|
case WordByWordEffectMode.Auto:
|
||||||
if (line.PrimaryRenderSyllables.Count > 1)
|
if (line.IsPrimaryHasRealSyllableInfo)
|
||||||
{
|
{
|
||||||
return CalculateSyllableProgress(currentTimeMs, line, lineEndMs);
|
return CalculateSyllableProgress(currentTimeMs, line, lineEndMs);
|
||||||
}
|
}
|
||||||
@@ -106,7 +106,7 @@ namespace BetterLyrics.WinUI3.Logic
|
|||||||
state.SyllableProgress = 1f;
|
state.SyllableProgress = 1f;
|
||||||
return state;
|
return state;
|
||||||
case WordByWordEffectMode.Always:
|
case WordByWordEffectMode.Always:
|
||||||
if (line.PrimaryRenderSyllables.Count > 1)
|
if (line.IsPrimaryHasRealSyllableInfo)
|
||||||
{
|
{
|
||||||
return CalculateSyllableProgress(currentTimeMs, line, lineEndMs);
|
return CalculateSyllableProgress(currentTimeMs, line, lineEndMs);
|
||||||
}
|
}
|
||||||
@@ -129,8 +129,7 @@ namespace BetterLyrics.WinUI3.Logic
|
|||||||
var timing = line.PrimaryRenderSyllables[i];
|
var timing = line.PrimaryRenderSyllables[i];
|
||||||
var nextTiming = (i + 1 < count) ? line.PrimaryRenderSyllables[i + 1] : null;
|
var nextTiming = (i + 1 < count) ? line.PrimaryRenderSyllables[i + 1] : null;
|
||||||
|
|
||||||
//double timingEndMs = timing.EndMs ?? nextTiming?.StartMs ?? lineEndMs;
|
double timingEndMs = timing.EndMs ?? 0;
|
||||||
double timingEndMs = timing.EndMs;
|
|
||||||
|
|
||||||
// 在当前字范围内
|
// 在当前字范围内
|
||||||
if (time >= timing.StartMs && time <= timingEndMs)
|
if (time >= timing.StartMs && time <= timingEndMs)
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ namespace BetterLyrics.WinUI3.Models.Lyrics
|
|||||||
public class BaseLyrics
|
public class BaseLyrics
|
||||||
{
|
{
|
||||||
public int StartMs { get; set; }
|
public int StartMs { get; set; }
|
||||||
public int EndMs { get; set; }
|
public int? EndMs { get; set; } = null;
|
||||||
public int DurationMs => EndMs - StartMs;
|
public int DurationMs => Math.Max((EndMs ?? 0) - StartMs, 0);
|
||||||
|
|
||||||
public string Text { get; set; } = "";
|
public string Text { get; set; } = "";
|
||||||
public int Length => Text.Length;
|
public int Length => Text.Length;
|
||||||
|
|||||||
@@ -22,6 +22,8 @@ namespace BetterLyrics.WinUI3.Models.Lyrics
|
|||||||
public new string Text => PrimaryText;
|
public new string Text => PrimaryText;
|
||||||
public new int StartIndex = 0;
|
public new int StartIndex = 0;
|
||||||
|
|
||||||
|
public bool IsPrimaryHasRealSyllableInfo { get; set; } = false;
|
||||||
|
|
||||||
public LyricsLine()
|
public LyricsLine()
|
||||||
{
|
{
|
||||||
for (int charStartIndex = 0; charStartIndex < PrimaryText.Length; charStartIndex++)
|
for (int charStartIndex = 0; charStartIndex < PrimaryText.Length; charStartIndex++)
|
||||||
|
|||||||
@@ -76,6 +76,8 @@ namespace BetterLyrics.WinUI3.Models.Lyrics
|
|||||||
|
|
||||||
public double? PrimaryLineHeight => PrimaryRenderChars.FirstOrDefault()?.LayoutRect.Height;
|
public double? PrimaryLineHeight => PrimaryRenderChars.FirstOrDefault()?.LayoutRect.Height;
|
||||||
|
|
||||||
|
public bool IsPrimaryHasRealSyllableInfo { get; set; }
|
||||||
|
|
||||||
public RenderLyricsLine(LyricsLine lyricsLine) : base(lyricsLine)
|
public RenderLyricsLine(LyricsLine lyricsLine) : base(lyricsLine)
|
||||||
{
|
{
|
||||||
AngleTransition = new(
|
AngleTransition = new(
|
||||||
@@ -130,6 +132,7 @@ namespace BetterLyrics.WinUI3.Models.Lyrics
|
|||||||
PrimaryText = lyricsLine.PrimaryText;
|
PrimaryText = lyricsLine.PrimaryText;
|
||||||
SecondaryText = lyricsLine.SecondaryText;
|
SecondaryText = lyricsLine.SecondaryText;
|
||||||
PrimaryRenderSyllables = lyricsLine.PrimarySyllables.Select(x => new RenderLyricsSyllable(x)).ToList();
|
PrimaryRenderSyllables = lyricsLine.PrimarySyllables.Select(x => new RenderLyricsSyllable(x)).ToList();
|
||||||
|
IsPrimaryHasRealSyllableInfo = lyricsLine.IsPrimaryHasRealSyllableInfo;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void UpdateCenterPosition(double maxWidth, TextAlignmentType type)
|
public void UpdateCenterPosition(double maxWidth, TextAlignmentType type)
|
||||||
|
|||||||
@@ -40,26 +40,14 @@ namespace BetterLyrics.WinUI3.Parsers.LyricsParser
|
|||||||
startIndex += text.Length;
|
startIndex += text.Length;
|
||||||
}
|
}
|
||||||
|
|
||||||
int lineEndMs = 0;
|
|
||||||
|
|
||||||
if (syllables.Count > 0)
|
|
||||||
{
|
|
||||||
var lastSyllable = syllables[syllables.Count - 1];
|
|
||||||
if (string.IsNullOrWhiteSpace(lastSyllable.Text))
|
|
||||||
{
|
|
||||||
lineEndMs = lastSyllable.StartMs;
|
|
||||||
syllables.RemoveAt(syllables.Count - 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (syllables.Count > 1)
|
if (syllables.Count > 1)
|
||||||
{
|
{
|
||||||
lrcLines.Add(new LyricsLine
|
lrcLines.Add(new LyricsLine
|
||||||
{
|
{
|
||||||
StartMs = syllables[0].StartMs,
|
StartMs = syllables[0].StartMs,
|
||||||
EndMs = lineEndMs,
|
|
||||||
PrimaryText = string.Concat(syllables.Select(s => s.Text)),
|
PrimaryText = string.Concat(syllables.Select(s => s.Text)),
|
||||||
PrimarySyllables = syllables
|
PrimarySyllables = syllables,
|
||||||
|
IsPrimaryHasRealSyllableInfo = true
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -81,7 +69,13 @@ namespace BetterLyrics.WinUI3.Parsers.LyricsParser
|
|||||||
content = bracketRegex!.Replace(line, "").Trim();
|
content = bracketRegex!.Replace(line, "").Trim();
|
||||||
if (content == "//") content = "";
|
if (content == "//") content = "";
|
||||||
|
|
||||||
lrcLines.Add(new LyricsLine { StartMs = lineStartMs, PrimaryText = content });
|
var lyricsLine = new LyricsLine
|
||||||
|
{
|
||||||
|
StartMs = lineStartMs,
|
||||||
|
PrimaryText = content,
|
||||||
|
IsPrimaryHasRealSyllableInfo = false
|
||||||
|
};
|
||||||
|
lrcLines.Add(lyricsLine);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -125,5 +119,6 @@ namespace BetterLyrics.WinUI3.Parsers.LyricsParser
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,9 +21,8 @@ namespace BetterLyrics.WinUI3.Parsers.LyricsParser
|
|||||||
var lineWrite = new LyricsLine
|
var lineWrite = new LyricsLine
|
||||||
{
|
{
|
||||||
StartMs = lineRead.StartTime ?? 0,
|
StartMs = lineRead.StartTime ?? 0,
|
||||||
EndMs = lineRead.EndTime ?? (nextLineRead?.StartTime ?? 0),
|
|
||||||
PrimaryText = lineRead.Text,
|
PrimaryText = lineRead.Text,
|
||||||
PrimarySyllables = [],
|
IsPrimaryHasRealSyllableInfo = true,
|
||||||
};
|
};
|
||||||
|
|
||||||
var syllables = (lineRead as Lyricify.Lyrics.Models.SyllableLineInfo)?.Syllables;
|
var syllables = (lineRead as Lyricify.Lyrics.Models.SyllableLineInfo)?.Syllables;
|
||||||
|
|||||||
@@ -127,7 +127,8 @@ namespace BetterLyrics.WinUI3.Parsers.LyricsParser
|
|||||||
StartMs = containerStartMs,
|
StartMs = containerStartMs,
|
||||||
EndMs = containerEndMs,
|
EndMs = containerEndMs,
|
||||||
PrimaryText = fullOriginalText,
|
PrimaryText = fullOriginalText,
|
||||||
PrimarySyllables = syllables
|
PrimarySyllables = syllables,
|
||||||
|
IsPrimaryHasRealSyllableInfo = true,
|
||||||
});
|
});
|
||||||
|
|
||||||
var transSpan = container.Elements()
|
var transSpan = container.Elements()
|
||||||
@@ -151,7 +152,8 @@ namespace BetterLyrics.WinUI3.Parsers.LyricsParser
|
|||||||
{
|
{
|
||||||
StartMs = startMs,
|
StartMs = startMs,
|
||||||
EndMs = endMs,
|
EndMs = endMs,
|
||||||
PrimaryText = text
|
PrimaryText = text,
|
||||||
|
IsPrimaryHasRealSyllableInfo = false,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -160,7 +162,8 @@ namespace BetterLyrics.WinUI3.Parsers.LyricsParser
|
|||||||
{
|
{
|
||||||
StartMs = startMs,
|
StartMs = startMs,
|
||||||
EndMs = endMs,
|
EndMs = endMs,
|
||||||
PrimaryText = ""
|
PrimaryText = "",
|
||||||
|
IsPrimaryHasRealSyllableInfo = false,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -69,6 +69,9 @@ namespace BetterLyrics.WinUI3.Parsers.LyricsParser
|
|||||||
LoadTransliteration(lyricsSearchResult);
|
LoadTransliteration(lyricsSearchResult);
|
||||||
GenerateTransliterationLyricsData();
|
GenerateTransliterationLyricsData();
|
||||||
|
|
||||||
|
EnsureEndMs(lyricsSearchResult?.Duration);
|
||||||
|
EnsureSyllables();
|
||||||
|
|
||||||
return _lyricsDataArr;
|
return _lyricsDataArr;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -271,5 +274,84 @@ namespace BetterLyrics.WinUI3.Parsers.LyricsParser
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void EnsureEndMs(double? duration)
|
||||||
|
{
|
||||||
|
foreach (var lyricsData in _lyricsDataArr)
|
||||||
|
{
|
||||||
|
var lines = lyricsData.LyricsLines;
|
||||||
|
// 计算结束时间
|
||||||
|
for (int i = 0; i < lines.Count; i++)
|
||||||
|
{
|
||||||
|
// 计算行结束时间
|
||||||
|
if (lines[i].EndMs == null)
|
||||||
|
{
|
||||||
|
if (i + 1 < lines.Count)
|
||||||
|
{
|
||||||
|
lines[i].EndMs = lines[i + 1].StartMs;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
lines[i].EndMs = (int)(duration ?? 0) * 1000;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 计算音节结束时间
|
||||||
|
for (int j = 0; j < lines[i].PrimarySyllables.Count; j++)
|
||||||
|
{
|
||||||
|
var syllable = lines[i].PrimarySyllables[j];
|
||||||
|
if (syllable.EndMs == null)
|
||||||
|
{
|
||||||
|
if (j < lines[i].PrimarySyllables.Count - 1)
|
||||||
|
{
|
||||||
|
syllable.EndMs = lines[i].PrimarySyllables[j + 1].StartMs;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
syllable.EndMs = lines[i].EndMs;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Invoke this after <see cref="EnsureEndMs"/>
|
||||||
|
/// </summary>
|
||||||
|
private void EnsureSyllables()
|
||||||
|
{
|
||||||
|
foreach (var lyricsData in _lyricsDataArr)
|
||||||
|
{
|
||||||
|
if (lyricsData == null) continue;
|
||||||
|
|
||||||
|
var lines = lyricsData.LyricsLines;
|
||||||
|
if (lines == null) continue;
|
||||||
|
|
||||||
|
foreach (var line in lines)
|
||||||
|
{
|
||||||
|
if (line == null) continue;
|
||||||
|
if (line.IsPrimaryHasRealSyllableInfo) continue;
|
||||||
|
if (line.PrimarySyllables.Count > 0) continue;
|
||||||
|
|
||||||
|
var content = line.PrimaryText;
|
||||||
|
var length = content.Length;
|
||||||
|
if (length == 0) continue;
|
||||||
|
|
||||||
|
var avgSyllableDuration = line.DurationMs / length;
|
||||||
|
if (avgSyllableDuration == 0) continue;
|
||||||
|
|
||||||
|
for (int j = 0; j < length; j++)
|
||||||
|
{
|
||||||
|
line.PrimarySyllables.Add(new BaseLyrics
|
||||||
|
{
|
||||||
|
Text = content[j].ToString(),
|
||||||
|
StartIndex = j,
|
||||||
|
StartMs = line.StartMs + avgSyllableDuration * j,
|
||||||
|
EndMs = line.StartMs + avgSyllableDuration * (j + 1),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
[**中文**](README.CN.md) | [**English**](README.md)
|
**中文** | [**English**](README.md)
|
||||||
|
|
||||||
<div align="center">
|
<div align="center">
|
||||||
<img src="BetterLyrics.WinUI3/BetterLyrics.WinUI3/Assets/Logo.png" alt="Logo" width="120">
|
<img src="BetterLyrics.WinUI3/BetterLyrics.WinUI3/Assets/Logo.png" alt="Logo" width="120">
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
[**中文**](README.CN.md) | [**English**](README.md)
|
[**中文**](README.CN.md) | **English**
|
||||||
|
|
||||||
<div align="center">
|
<div align="center">
|
||||||
<img src="BetterLyrics.WinUI3/BetterLyrics.WinUI3/Assets/Logo.png" alt="Logo" width="120">
|
<img src="BetterLyrics.WinUI3/BetterLyrics.WinUI3/Assets/Logo.png" alt="Logo" width="120">
|
||||||
|
|||||||
Reference in New Issue
Block a user