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

recordrtc

Package Overview
Dependencies
Maintainers
1
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

recordrtc - npm Package Compare versions

Comparing version 4.0.6 to 4.0.7

2

package.json
{
"name": "recordrtc",
"preferGlobal": true,
"version": "4.0.6",
"version": "4.0.7",
"author": {

@@ -6,0 +6,0 @@ "name": "Muaz Khan",

@@ -1,2 +0,2 @@

// Last time updated at Oct 23, 2014, 08:32:23
// Last time updated at Oct 24, 2014, 08:32:23

@@ -887,3 +887,3 @@ // updates?

isRecording = false;
whammy.frames = dropFirstFrame(frames);
whammy.frames = frames;

@@ -968,3 +968,3 @@ this.blob = whammy.compile();

console.log('canvas resolutions', canvas.width, '*', canvas.height);
console.log('video width/height', video.width, '*', video.height);
console.log('video width/height', video.width || canvas.width, '*', video.height || canvas.height);

@@ -1003,3 +1003,3 @@ drawFrames();

isStopDrawing = true;
whammy.frames = dropFirstFrame(frames);
whammy.frames = frames;

@@ -1571,13 +1571,2 @@ this.blob = whammy.compile();

// This method is taken from a modified version of MediaStreamRecorder.js!
// To solve first frame that is always blank.
// See: https://github.com/muaz-khan/WebRTC-Experiment/issues/94
function dropFirstFrame(arr) {
for (var i = 0; i < 60; i++) {
arr.shift();
}
return arr;
}
if (location.href.indexOf('file:') == 0) {

@@ -1584,0 +1573,0 @@ console.error('Please load this HTML file on HTTP or HTTPS.');

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