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

react-desktop-audio

v1.4.0

Published

A React hook for desktop audio capture.

Downloads

273

Readme

React Desktop Audio Capture

A React hook for capturing desktop audio, allowing easy integration of audio recording functionality into your React applications.

Demo

Check out the live demo: Desktop Audio Capture Demo

Installation

Install the package using npm:

npm install react-desktop-audio

or yarn:

yarn add react-desktop-audio

Usage

Basic Example

Here's an example of how to use the useDesktopAudioCapture hook in a React component:

import React from 'react';
import useDesktopAudioCapture from 'react-desktop-audio';

const App: React.FC = () => {
  const { 
    captureState, 
    startRecording, 
    stopRecording, 
    audioBlob, 
    error, 
    requestPermissionsAndStartRecording
  } = useDesktopAudioCapture();

  const handleToggleCapture = () => {
    if (captureState === 'stopped' || captureState === 'error') {
      requestPermissionsAndStartRecording();
    } else {
      stopRecording();
    }
  };

  return (
    <div className="flex flex-col items-center justify-center w-screen h-screen bg-gradient-to-br from-gray-800 to-black text-white">
      <div className="flex flex-col items-center bg-gray-900 p-8 rounded-lg shadow-lg">
        <h1 className="text-3xl font-bold mb-4">Desktop Audio Capture</h1>
        <button 
          onClick={handleToggleCapture}
          className={`px-4 py-2 rounded-md text-lg font-semibold mb-4 ${
            captureState === 'recording' ? 'bg-red-600 hover:bg-red-700' : 'bg-blue-600 hover:bg-blue-700'
          }`}
        >
          {captureState === 'recording' ? 'Stop Recording' : 'Start Recording'}
        </button>
        {captureState === 'requesting_permissions' && <div className="text-yellow-400 mb-4">Requesting permissions...</div>}
        {error && <div className="text-red-600 mb-4">{error}</div>}
        {(captureState !== 'requesting_permissions' && audioBlob) && (
          <div className="mt-4">
            <h2 className="text-xl font-semibold mb-2">Recorded Audio</h2>
            <audio controls src={URL.createObjectURL(audioBlob)} className="w-full"/>
          </div>
        )}
      </div>
    </div>
  );
};

export default App;

API

useDesktopAudioCapture

The useDesktopAudioCapture hook provides the following properties and methods:

Returns

  • captureState: CaptureState

    • The current state of the audio capture. It can be one of the following:
      • 'stopped'
      • 'requesting_permissions'
      • 'recording'
      • 'error'
  • startRecording: () => void

    • Function to start recording.
  • stopRecording: () => void

    • Function to stop recording.
  • audioBlob: Blob | null

    • The recorded audio blob.
  • error: string | null

    • Any error that occurred during the capture process.
  • requestPermissionsAndStartRecording: () => void

    • Function to request permissions and start recording if granted.

Capture States

  • stopped: No recording is taking place.
  • requesting_permissions: Permissions are being requested from the user to capture the screen and audio.
  • recording: Recording is in progress.
  • error: An error occurred during the recording process.

Error Handling

The error property provides detailed error messages which can help in debugging issues such as permission denial or lack of audio tracks in the captured stream.

Cleanup

The hook includes proper cleanup to stop all media tracks when the component unmounts or when the recording is stopped.

License

MIT License