npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

media-stream-list

v1.1.0

Published

Local Stream

Downloads

160

Readme

Media Stream Utilities

This package provides a set of utilities for working with various media sources, including capturing video, audio, and screen content, as well as loading media files. It provides a simple interface to access and manage these media sources.

Installation

You can install the package via npm:

npm install media-stream-list

Usage

Importing the Package To use the utilities, import the package into your project:

import MediaStreamUtils from 'media-stream-list';

Available Media Sources

The package supports the following media sources:

Image Files: Load image files from the user's local system. Video Files: Load video files from the user's local system. Audio Files: Load audio files from the user's local system. Display Capture: Capture the user's screen. Window Capture: Capture specific application windows. Browser Capture: Capture browser tabs. Audio Input: Capture audio from microphones. Video Input: Capture video from webcams.

Example Usage

List Available Media Sources

You can get a list of available media sources by calling getMediaList():

const mediaList = await MediaStreamList.getMediaList();
console.log(mediaList);

Each item in the list includes a getSource method that you can call to obtain the corresponding media source.

Capture Video from Webcam

const webcamSource = await MediaStreamList.getMediaTrack('video');
console.log(webcamSource);

Capture Audio from Microphone

const audioSource = await MediaStreamList.getMediaTrack('audio');
console.log(audioSource);

Capture Screen

const screenCapture = await MediaStreamList.getDisplay();
console.log(screenCapture);

Load Image File

const imageSource = await MediaStreamList.loadFile('imagefile');
console.log(imageSource);

Utility Methods

devices(type: MediaDeviceKind | 'input' | 'output'): Promise<MediaDeviceInfo[]>

Get a list of media devices (e.g., microphones, cameras).

type: Specify the type of device to list (e.g., 'audioinput', 'videoinput', 'input', 'output').

getMediaTrack(kind: 'video' | 'audio', constraints?: MediaTrackConstraints): Promise<MediaStream>

Get a media stream for a specified type of media track.

kind: Specify 'video' or 'audio'.

constraints: (Optional) Media track constraints.

getDisplay(constraints?: DisplayMediaStreamOptions): Promise<MediaStream>

Capture the user's screen or a specific window.

constraints: (Optional) Display media stream options.

loadFile(type: FileSourceKind): Promise<SourceItem>

Load a file (image, video, or audio) from the user's system.

type: Specify 'imagefile', 'videofile', or 'audiofile'.

getMediaList(): Promise<Array<MediaItem>>

Get a list of available media items, including files and capture devices.

###Default Settings The package provides default settings for video and audio capture:

  • Video:
    • Width: 960 (ideal)
    • Height: 540 (ideal)
    • Frame Rate: 30 FPS
    • Aspect Ratio: 16:9
  • Audio:
    • Echo Cancellation: Enabled
    • Noise Suppression: Enabled
    • Display Capture:
    • Audio: Enabled
    • Video Height: 1080

###License This project is licensed under the MIT License.