node-webrtc-audio-source

0.3.4 • Public • Published

node-webrtc-audio-source

node-webrtc started supporting programmatic audio since version 0.3.6. But it doesn't cover how to get audio stream from microphone.

This library gives you a RTCAudioSource object which streams audio data from microphone.

Install

yarn add node-webrtc-audio-source wrtc

Usage

import { nonstandard } from 'wrtc'
import RTCAudioSource from 'node-webrtc-audio-source'
 
const { RTCAudioSink } = nonstandard
 
const rtcAudioSource  = new RTCAudioSource()
const track = rtcAudioSource.createTrack()
const rtcAudioSink = new RTCAudioSink(track)
 
rtcAudioSink.ondata = data => {
  // Do something with the received audio samples.
}
rtcAudioSource.start()
setTimeout(() => rtcAudioSource.stop(), 10000) // stop after 10 seconds

How does it work?

macOS

rec -q -b 16 -r 48000 -e signed -c 1 -t raw --buffer 1920 -

Windows

ffmpeg -f dshow -audio_buffer_size 50 -i audio="My Microphone Device" -ac 1 -ar 48000 -f s16le -acodec pcm_s16le -

How to get list of devices

ffmpeg -list_devices true -f dshow -i dummy

Readme

Keywords

none

Package Sidebar

Install

npm i node-webrtc-audio-source

Weekly Downloads

8

Version

0.3.4

License

MIT

Unpacked Size

16 kB

Total Files

10

Last publish

Collaborators

  • tylerlong