Comparing version 0.4.0 to 0.4.1
{ | ||
"name": "mp4box", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"description": "JavaScript version of GPAC's MP4Box tool", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -186,3 +186,3 @@ ISOFile.prototype.add = BoxParser.Box.prototype.add; | ||
var moof = ISOFile.createSingleSampleMoof(sample); | ||
var moof = this.createSingleSampleMoof(sample); | ||
this.addBox(moof); | ||
@@ -196,3 +196,3 @@ moof.computeSize(); | ||
ISOFile.createSingleSampleMoof = function(sample) { | ||
ISOFile.prototype.createSingleSampleMoof = function(sample) { | ||
var moof = new BoxParser.moofBox(); | ||
@@ -199,0 +199,0 @@ moof.add("mfhd").set("sequence_number", this.nextMoofNumber); |
@@ -24,3 +24,3 @@ /* Rewrite the entire file */ | ||
var moof = ISOFile.createSingleSampleMoof(sample); | ||
var moof = this.createSingleSampleMoof(sample); | ||
moof.write(stream); | ||
@@ -27,0 +27,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
966231