1.0.2 • Published 9 years ago

concatenateblobs v1.0.2

Weekly downloads
152
License
MIT
Repository
github
Last release
9 years ago

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>

1. Link The Library

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

License

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