Skip to content
Snippets Groups Projects
Commit 4d8388fe authored by CosineSky's avatar CosineSky
Browse files

- Implemented song playing!!!

parent dab8c75a
No related branches found
No related tags found
No related merge requests found
......@@ -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
})
......
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.
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment