Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
phonegap-plugin-media-stream
Advanced tools
This plugin provides an implementation of the W3C Media Capture API which allows authorized web applications to access streams from the device's audio and video capturing interfaces, i.e. to use the data available from the camera and the microphone. The streams exposed by the API can be bound directly to the HTML or elements or read and manipulated in the code, including further more specific processing via Image Capture API, Media Recorder API or Real-Time Communication.
phonegap plugin add phonegap-plugin-media-stream
phonegap plugin add https://github.com/phonegap/phonegap-plugin-media-stream.git
mediaDevices
ObjectThe mediaDevices object has the following methods:
The getUserMedia
method call prompts the user for permission to capture audio or video input. The method returns a promise that when resolved returns a MediaStream
object. You can constrain what type of media streams are return by passing in an option MediaStreamConstraints
object.
navigator.mediaDevices.getUserMedia({
'audio': true,
'video': {
facingMode: 'user'
}
}).then(function(mediaStream) {
// do something with the media stream
});
The getSupportedConstraints
method returns an object which describes which constraints the device supports. You can check the constraints before making a call to getUserMedia
to make sure that the functionality you want is supported.
var constraints = navigator.mediaDevices.getSupportedConstraints();
console.log(constraints);
The iOS implementation that this plugin provides does not allow you to attach the returned MediaStream
object to a audio
or video
tag. Rather you will use the MeidaStream
object to get a MediaStreamTrack
to pass to the Image (see phonegap-plugin-image-capture) or Audio capture API.
v1.0.0 (2017-08-09)
FAQs
------------------------
The npm package phonegap-plugin-media-stream receives a total of 7 weekly downloads. As such, phonegap-plugin-media-stream popularity was classified as not popular.
We found that phonegap-plugin-media-stream demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.