|
@ -157,10 +157,13 @@ export default { |
|
|
let notifyMsg = '成功修改 ' + this.editing_data.title; |
|
|
let notifyMsg = '成功修改 ' + this.editing_data.title; |
|
|
try { |
|
|
try { |
|
|
const musicMeta = await metaParseBlob(new Blob([this.editing_data.blob], { type: mime })); |
|
|
const musicMeta = await metaParseBlob(new Blob([this.editing_data.blob], { type: mime })); |
|
|
const imageInfo = await GetImageFromURL(this.editing_data.picture); |
|
|
let imageInfo = undefined; |
|
|
|
|
|
if (this.editing_data.picture !== '') { |
|
|
|
|
|
imageInfo = await GetImageFromURL(this.editing_data.picture); |
|
|
if (!imageInfo) { |
|
|
if (!imageInfo) { |
|
|
console.warn('获取图像失败', this.editing_data.picture); |
|
|
console.warn('获取图像失败', this.editing_data.picture); |
|
|
} |
|
|
} |
|
|
|
|
|
} |
|
|
const newMeta = { picture: imageInfo?.buffer, |
|
|
const newMeta = { picture: imageInfo?.buffer, |
|
|
title: data.title, |
|
|
title: data.title, |
|
|
artists: data.artist.split(split_regex), |
|
|
artists: data.artist.split(split_regex), |
|
@ -176,7 +179,7 @@ export default { |
|
|
this.editing_data.blob = new Blob([RewriteMetaToFlac(buffer, newMeta, musicMeta)], { type: mime }); |
|
|
this.editing_data.blob = new Blob([RewriteMetaToFlac(buffer, newMeta, musicMeta)], { type: mime }); |
|
|
} else { |
|
|
} else { |
|
|
writeSuccess = undefined; |
|
|
writeSuccess = undefined; |
|
|
notifyMsg = info.ext + '类型文件暂时不支持修改音乐标签'; |
|
|
notifyMsg = this.editing_data.ext + '类型文件暂时不支持修改音乐标签'; |
|
|
} |
|
|
} |
|
|
} catch (e) { |
|
|
} catch (e) { |
|
|
writeSuccess = false; |
|
|
writeSuccess = false; |
|
|