feature:封面图缩小

This commit is contained in:
charlesxie
2023-07-11 16:25:13 +08:00
parent b1e37ce756
commit db5bebc754
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ from applications.utils.send import send
COPYRIGHT = "感谢您的聆听music-tag-web打上标签。POW~"
def update_music_info(music_id3_info, is_raw_thumbnail=False):
def update_music_info(music_id3_info, is_raw_thumbnail=True):
for each in music_id3_info:
f = music_tag.load_file(each["file_full_path"])
save_music(f, each, is_raw_thumbnail)

View File

@@ -83,5 +83,5 @@ def match_song(resource, song_path, select_mode):
song_select["filename"] = file_name
song_select["file_full_path"] = song_path
song_select["lyrics"] = MusicResource(resource).fetch_lyric(song_select["id"])
save_music(file, song_select, False)
save_music(file, song_select, True)
return is_match