Socket
Socket
Sign inDemoInstall

concatenateblobs

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    concatenateblobs

Simply pass array of blobs. This javascript library will concatenate all blobs in single Blob object.


Version published
Weekly downloads
38
decreased by-2.56%
Maintainers
1
Install size
4.60 kB
Created
Weekly downloads
 

Readme

Source

ConcatenateBlobs.js npm downloads

Demo: https://www.WebRTC-Experiment.com/ConcatenateBlobs/

Simply pass array of blobs. This javascript library will concatenate all blobs in single "Blob" object.

It is MIT Licenced, which means that you can use it in any commercial/non-commercial product, free of cost.

npm install concatenateblobs

To use it:

<script src="./node_modules/concatenateblobs/ConcatenateBlobs.js"></script>
https://cdn.webrtc-experiment.com/ConcatenateBlobs.js

// or
https://www.webrtc-experiment.com/ConcatenateBlobs.js

2. Use it

// 2nd argument is type of "resulting-blob"
ConcatenateBlobs([arrayOfBlobs], 'audio/wav', function(resultingBlob) {

    POST_to_Server(resultingBlob);
    
    // or preview locally
    localVideo.src = URL.createObjectURL(resultingBlob);
});

Credits

  • Muaz Khan

License

ConcatenateBlobs.js is released under MIT licence . Copyright (c) Muaz Khan.

Keywords

FAQs

Last updated on 18 Nov 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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