Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

js-ffmpeg

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

js-ffmpeg - npm Package Compare versions

Comparing version 0.0.31 to 0.0.32

2

package.json
{
"name": "js-ffmpeg",
"description": "JS FFMpeg",
"version": "0.0.31",
"version": "0.0.32",
"author": "Ziggeo",

@@ -6,0 +6,0 @@ "repository": "https://github.com/jsonize/js-ffmpeg",

@@ -183,8 +183,7 @@ Scoped.require([

},
computeDuration: function (duration, time_start, time_end, time_limit) {
if (time_start)
duration -= time_start;
if (time_end)
duration -= time_end - (time_start || 0);
time_end = time_end > 0 && time_end < duration ? time_end : duration;
time_start = time_start > 0 ? Math.min(time_start, duration) : 0;
duration = Math.max(time_end - time_start, 0);
if (time_limit)

@@ -194,5 +193,5 @@ duration = Math.min(duration, time_limit);

}
};
});
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