New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@disoul/mp4box

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@disoul/mp4box - npm Package Compare versions

Comparing version 0.3.16-fix.8 to 0.3.16-fix.9

2

package.json
{
"name": "@disoul/mp4box",
"version": "0.3.16-fix.8",
"version": "0.3.16-fix.9",
"description": "JavaScript version of GPAC's MP4Box tool",

@@ -5,0 +5,0 @@ "keywords": [

@@ -597,7 +597,7 @@ /*

}
seek_offset = trak.samples[seek_sample_num].offset+trak.samples[seek_sample_num].alreadyRead;
// all samples are already read
if (seek_sample_num === trak.samples.length - 1 && trak.samples[seek_sample_num].alreadyRead === trak.sample[seek_sample_num].size) {
if (seek_sample_num === trak.samples.length) {
return { offset: -1, time: time/timescale };
}
seek_offset = trak.samples[seek_sample_num].offset+trak.samples[seek_sample_num].alreadyRead;
Log.info("ISOFile", "Seeking to "+(useRap ? "RAP": "")+" sample #"+trak.nextSample+" on track "+trak.tkhd.track_id+", time "+Log.getDurationString(time, timescale) +" and offset: "+seek_offset);

@@ -604,0 +604,0 @@ return { offset: seek_offset, time: time/timescale };

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc