mediabunny 1.52.0 → 1.52.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundles/mediabunny.cjs +3 -1
- package/dist/bundles/mediabunny.min.cjs +3 -3
- package/dist/bundles/mediabunny.min.mjs +4 -4
- package/dist/bundles/mediabunny.mjs +3 -1
- package/dist/bundles/mediabunny.node.cjs +3 -1
- package/dist/modules/src/isobmff/isobmff-boxes.d.ts.map +1 -1
- package/dist/modules/src/isobmff/isobmff-boxes.js +2 -1
- package/dist/modules/src/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/isobmff/isobmff-boxes.ts +2 -1
|
@@ -27400,8 +27400,10 @@ var Mediabunny = (() => {
|
|
|
27400
27400
|
u16(1),
|
|
27401
27401
|
// Frame count
|
|
27402
27402
|
// Compressor name
|
|
27403
|
+
u8("Mediabunny".length),
|
|
27404
|
+
// Weird Pascal-style string
|
|
27403
27405
|
ascii("Mediabunny"),
|
|
27404
|
-
Array(
|
|
27406
|
+
Array(31 - "Mediabunny".length).fill(0),
|
|
27405
27407
|
u16(trackData.info.hasAlphaChannel ? 32 : 24),
|
|
27406
27408
|
// Depth
|
|
27407
27409
|
i16(65535)
|