Browse Source
fix #142: remove default mp3 cover description
(cherry picked from commit 4bca64b4b8f4be02222de2fa5f6db0382855fd23)
20230320
MengYX
3 years ago
No known key found for this signature in database
GPG Key ID: E63F9C7303E8F604
1 changed files with
1 additions and
1 deletions
-
src/decrypt/utils.ts
|
|
@ -145,7 +145,7 @@ export function WriteMetaToMp3(audioData: Buffer, info: IMusicMeta, original: IA |
|
|
|
writer.setFrame('APIC', { |
|
|
|
type: 3, |
|
|
|
data: info.picture, |
|
|
|
description: info.picture_desc || 'Cover', |
|
|
|
description: info.picture_desc || '', |
|
|
|
}); |
|
|
|
} |
|
|
|
return writer.addTag(); |
|
|
|