Skip to content

Commit

Permalink
fix tkhd matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
DenizUgur committed Nov 2, 2024
1 parent 4b20c3b commit 685f491
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/isofile-advanced-creation.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ ISOFile.prototype.addTrack = function (_options) {
.set("layer", options.layer || 0)
.set("alternate_group", 0)
.set("volume", 1)
.set("matrix", [ 0, 0, 0, 0, 0, 0, 0, 0, 0 ])
.set("matrix", [ 1<<16, 0, 0, 0, 1<<16, 0, 0, 0, 0x40000000 ])
.set("width", options.width << 16)
.set("height", options.height << 16);

Expand Down

0 comments on commit 685f491

Please sign in to comment.