Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/wise-experts-wonder.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'mp4box': minor
---

The uuid boxes now display the extended_type, even if the box is already registered
1 change: 1 addition & 0 deletions src/parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ export function parseOneBox(
} else {
if (uuid in BoxRegistry.uuid) {
box = new BoxRegistry.uuid[uuid](size);
box.uuid = uuid;
} else {
Log.warn('BoxParser', `Unknown UUID box type: '${uuid}'`);
box = new Box(size);
Expand Down