Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
2
2024-HCI-Mirror
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
米 天为
2024-HCI-Mirror
Commits
4d8388fe
Commit
4d8388fe
authored
3 months ago
by
CosineSky
Browse files
Options
Downloads
Patches
Plain Diff
- Implemented song playing!!!
parent
dab8c75a
No related branches found
No related tags found
No related merge requests found
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/api/tool.js
+4
-1
4 additions, 1 deletion
src/api/tool.js
src/utils/parseLyrics.js
+30
-12
30 additions, 12 deletions
src/utils/parseLyrics.js
src/views/HomePage.vue
+665
-279
665 additions, 279 deletions
src/views/HomePage.vue
src/views/PlayingPage.vue
+1
-1
1 addition, 1 deletion
src/views/PlayingPage.vue
with
700 additions
and
293 deletions
src/api/tool.js
+
4
−
1
View file @
4d8388fe
...
...
@@ -8,7 +8,10 @@ import {API_MODULE} from './_prefix'
export
const
uploadFile
=
(
payload
)
=>
{
console
.
log
(
"
Uploading file:
"
,
payload
)
return
axios
.
post
(
`
${
API_MODULE
}
/upload`
,
payload
,
{
headers
:{
'
Content-Type
'
:
"
multipart/form-data;
"
}
headers
:
{
'
Content-Type
'
:
"
multipart/form-data;
"
,
'
Cache-Control
'
:
'
max-age=31536000
'
}
}).
then
(
res
=>
{
return
res
})
...
...
This diff is collapsed.
Click to expand it.
src/utils/parseLyrics.js
+
30
−
12
View file @
4d8388fe
export
function
parseLrc
(
lrcContent
)
{
// 定义正则表达式来匹配时间戳和歌词
export
async
function
parseLrc
(
url
)
{
try
{
const
response
=
await
fetch
(
url
);
if
(
!
response
.
ok
)
{
console
.
error
(
'
Response Error!
'
);
}
const
lrcContent
=
await
response
.
text
();
const
regex
=
/
\[(\d{2})
:
(\d{2}\.\d{3})\](
.*
)
/
;
const
lyrics
=
[];
const
lines
=
lrcContent
.
split
(
'
\n
'
);
lines
.
forEach
(
line
=>
{
const
match
=
line
.
match
(
regex
);
if
(
match
)
{
const
minutes
=
parseInt
(
match
[
1
],
10
);
const
seconds
=
parseFloat
(
match
[
2
]);
const
text
=
match
[
3
].
trim
();
const
timeInSeconds
=
minutes
*
60
+
seconds
;
lyrics
.
push
({
time
:
timeInSeconds
,
text
});
}
});
return
lyrics
;
}
catch
(
error
)
{
console
.
error
(
"
Failed to fetch lyrics:
"
,
error
);
return
[];
}
}
export
function
parseLrcOld
(
lrcContent
)
{
const
regex
=
/
\[(\d{2})
:
(\d{2}\.\d{3})\](
.*
)
/
;
const
lyrics
=
[];
// 按行分割 LRC 内容
const
lines
=
lrcContent
.
split
(
'
\n
'
);
lines
.
forEach
(
line
=>
{
// 匹配每行的时间戳和歌词
const
match
=
line
.
match
(
regex
);
if
(
match
)
{
// 提取分钟、秒和歌词文本
const
minutes
=
parseInt
(
match
[
1
],
10
);
const
seconds
=
parseFloat
(
match
[
2
]);
const
text
=
match
[
3
].
trim
();
// 计算总时间(秒)
const
timeInSeconds
=
minutes
*
60
+
seconds
;
// 将解析结果推送到 lyrics 数组
lyrics
.
push
({
time
:
timeInSeconds
,
text
});
}
});
return
lyrics
;
}
This diff is collapsed.
Click to expand it.
src/views/HomePage.vue
+
665
−
279
View file @
4d8388fe
This diff is collapsed.
Click to expand it.
src/views/PlayingPage.vue
+
1
−
1
View file @
4d8388fe
...
...
@@ -414,7 +414,7 @@ onMounted(() => {
<span
v-if=
"isFullScreen"
>
↖
</span>
<span
v-else
>
⛶
</span>
</button>
<button
@
click=
"
router.push('/home')
"
class=
"corner-button"
>
<button
@
click=
"
isPlayingPage
"
class=
"corner-button"
>
<span>
◀
</span>
</button>
</div>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment