Socket
Socket
Sign inDemoInstall

audio-recorder-polyfill

Package Overview
Dependencies
0
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.5 to 0.1.6

3

CHANGELOG.md
# Change Log
This project adheres to [Semantic Versioning](http://semver.org/).
## 0.1.6
* Allow to record after calling `stop()` (by @floydback).
## 0.1.5

@@ -5,0 +8,0 @@ * Fix problem with Safari garbage collection (by Shunsuke Mano).

5

index.js

@@ -95,4 +95,7 @@ var AudioContext = window.AudioContext || window.webkitAudioContext

var input = context.createMediaStreamSource(this.clone)
processor = context.createScriptProcessor(2048, 1, 1)
if (!processor) {
processor = context.createScriptProcessor(2048, 1, 1)
}
var recorder = this

@@ -99,0 +102,0 @@ processor.onaudioprocess = function (e) {

{
"name": "audio-recorder-polyfill",
"version": "0.1.5",
"version": "0.1.6",
"description": "MediaRecorder polyfill to record audio in Edge and Safari",

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

@@ -7,7 +7,7 @@ # Audio Recorder Polyfill

[MediaRecorder] polyfill to record audio in Edge and Safari 11.
[MediaRecorder] polyfill to record audio in Edge and Safari.
Try it in **[online demo]** and see **[API]**.
* **Spec compatible.** In the future when all browsers will support
MediaRecorder, you will just remove polyfill.
MediaRecorder, you will remove polyfill.
* **Small.** 1.1 KB (minified and gzipped). No dependencies.

@@ -14,0 +14,0 @@ It uses [Size Limit] to control size.

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc