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

sofya.transcription

v0.0.3

Published

a JavaScript library that provides a robust and flexible solution for real-time audio transcription. It is designed to transcribe audio streams and can be easily integrated into web applications.

Downloads

82

Readme

Sofya Transcription

Sofya Transcription is a JavaScript library that provides a robust and flexible solution for real-time audio transcription. It is designed to transcribe audio streams and can be easily integrated into web applications. The library also includes a functionality for capturing audio from media elements.

Features

  • Real-Time Transcription: Transcribe audio streams in real time with high accuracy.
  • Flexible Integration: Seamlessly integrates with your web applications.
  • Media Element Audio Capture: Feature to capture audio from media elements like <video> and <audio>.

Installation

To install Sofya Transcription, you can use npm:

npm install sofya.transcription

Usage

Here's a basic example of how to use Sofya Transcription in your project:

  1. Import the Library:

    import { MediaElementAudioCapture, TranscriptionService } from 'sofya.transcription';

  2. Create a Transcription Service Instance: const transcriptionConfig = {language: 'pt-BR', model: 'YOUR_MODEL_ID', region: 'YOUR_REGION'} const transcriber = new TranscriptionService('YOUR_API_KEY', transcriptionConfig);

  3. Initialize and Start Transcription:

    const mediaStream = await navigator.mediaDevices.getUserMedia(); transcriber.startTranscription(mediaStream);

  4. Handle Transcription Events:

    transcriber.on('recognizing', (text) => { console.log('Recognizing: ' + text); });

    transcriber.on('recognized', (text) => { console.log('Recognized: ' + text); });

    transcriber.on('nomatch', () => { console.log('No match found.'); });

  5. Stop Transcription:

    transcriber.stopTranscription();

API

TranscriptionService

  • constructor('YOUR_API_KEY', config): Creates a new instance of the transcription service with a given API KEY and an config object.

  • startTranscription(): void: Starts the transcription process with a given MediaStream.

  • stopTranscription(): void: Stops the transcription process.

  • on(event: string, callback: Function): void: Registers an event handler for transcription events. Possible events include:

    • recognizing: Fired when transcription is in progress.
    • recognized: Fired when transcription is complete.
    • nomatch: Fired when no speech is recognized.
  • React Example

import React from 'react'
import { SofyaTranscriber } from 'sofya.transcription'
export const App = () => {
  const transcriber = React.useRef(null)
  const [transcription, setTranscription] = React.useState('')
  const transcriptionRef = React.useRef('')

  const getMediaStream = async () => {
    const stream = await navigator.mediaDevices.getUserMedia({ audio: true })
    return stream
  }

  const startTranscription = async () => {
    try {
      const stream = await getMediaStream()
      const transcriber = new SofyaTranscriber(
        'your_key',
        {
          language: 'pt-BR',
          model: 'your_model',
          region: 'your_region',
        }
      )

      transcriber.startTranscription(stream)
      transcriber.on('recognizing', (result: string) => {
        console.log({ recognizing: result })
        setTranscription(transcriptionRef.current + result)
      })

      transcriber.on('recognized', (result: string) => {
        console.log({ recognized: result })
        setTranscription(transcriptionRef.current + result)
        transcriptionRef.current = transcriptionRef.current + result
      })
      transcriber.current = transcriber
    } catch (error) {
      console.log({ error })
    }
  }

  const stopTranscription = () => {
    if (transcriber.current) {
      transcriber.current.stopTranscription()
      transcriber.current = null
    }
  }

  return (
    <div>
      <button onClick={startTranscription}>Start Transcription</button>
      <button onClick={stopTranscription}>Stop Transcription</button>
      <hr />
      <p>{transcription}</p>
    </div>
  )
}

MediaElementAudioCapture

  • constructor(): Creates a new instance of the media element audio capture.

  • captureAudio(mediaElement: HTMLMediaElement): MediaStream: Captures the audio stream from a given media element and returns a MediaStream.