1
0
mirror of synced 2026-05-22 22:53:20 +00:00

* Fix parsing of GEOB tags in ID3v2 frame.

This commit is contained in:
Jiří
2024-11-08 09:52:07 +01:00
committed by Borewit
parent 3fa038f403
commit f8d1e9bb12
+2 -1
View File
@@ -318,12 +318,13 @@ export class FrameParser {
offset = fzero + 1;
fzero = util.findZero(uint8Array, offset, length, encoding);
const description = util.decodeString(uint8Array.slice(offset, fzero), defaultEnc);
offset = fzero + 1;
const geob: IGeneralEncapsulatedObject = {
type: mimeType,
filename,
description,
data: uint8Array.slice(offset + 1, length)
data: uint8Array.slice(offset, length)
};
output = geob;
break;