增加歌曲命名格式选项

This commit is contained in:
smdev
2020-02-04 18:24:53 +08:00
parent 304ad63585
commit 145e1a6ede
6 changed files with 29 additions and 1 deletions

View File

@@ -36,6 +36,7 @@ async function Decrypt(file, raw_filename, raw_ext) {
filename: info.filename,
title: info.title,
artist: info.artist,
ext: 'flac',
album: tag.common.album,
picture: picUrl,
file: musicUrl,

View File

@@ -56,6 +56,7 @@ async function Decrypt(file) {
filename: filename,
title: musicMeta.musicName,
artist: artists.join(" & "),
ext: musicMeta.format,
album: musicMeta.album,
picture: musicMeta.albumPic,
file: musicUrl,

View File

@@ -50,6 +50,7 @@ async function Decrypt(file, raw_filename, raw_ext) {
filename: info.filename,
title: info.title,
artist: info.artist,
ext: new_ext,
album: tag.common.album,
picture: picUrl,
file: musicUrl,

View File

@@ -17,6 +17,7 @@ async function Decrypt(file, raw_filename, raw_ext) {
filename: info.filename,
title: info.title,
artist: info.artist,
ext: raw_ext,
album: tag.common.album,
picture: picUrl,
file: fileUrl,