Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
attachmediastream
Advanced tools
A tiny browser module for attaching a media stream to a video element. It handles the differences between browsers.
Suitable for use with browserify/CommonJS on the client.
If you're not using browserify or you want AMD support use attachmediastream.bundle.js
.
This module will largely be obsolete once we get URL.createObjectUrl(stream)
everywhere.
npm install attachmediastream
Makes it easy to attach video streams to video tags.
var getUserMedia = require('getusermedia');
var attachMediaStream = require('attachmediastream');
// get user media
getUserMedia(function (err, stream) {
// if the browser doesn't support user media
// or the user says "no" the error gets passed
// as the first argument.
if (err) {
console.log('failed');
} else {
console.log('got a stream', stream);
// attaches a stream to an element
attachMediaStream(document.getElementById('myVideo'), stream);
}
});
This is actually less true than it used to be. It's fairly safe to just use URL.createObjectUrl(stream)
now.
The module's main function returns the element if successful and false
otherwise. In case that's useful. But if you're able to getUserMedia to begin with, attaching it shouldn't really fail.
MIT
If you like this, follow @HenrikJoreteg on twitter.
FAQs
cross-browser way to attach a media stream to a video element.
The npm package attachmediastream receives a total of 288 weekly downloads. As such, attachmediastream popularity was classified as not popular.
We found that attachmediastream demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.