# jsynth-mic

> Web Audio Mic/Line-in node from getUserMedia

Latest version **0.5.0** (published 2016-02-25) · BSD-2-Clause license · 0 weekly downloads

## Install

```sh
npm install jsynth-mic
pnpm add jsynth-mic
yarn add jsynth-mic
bun add jsynth-mic
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.5.0 |
| Published | 2016-02-25 |
| First published | 2014-02-24 |
| Weekly downloads | 0 |
| License | BSD-2-Clause |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Johnny Honestly |
| Maintainers | johnnyscript |
| Keywords | getUserMedia, WebAudio, mic, microphone, browserify |

## Links

- npm: https://www.npmjs.com/package/jsynth-mic
- Repository: git@github.com:NHQ/jsynth-mic
- Homepage: https://github.com/NHQ/jsynth-mic
- Issues: https://github.com/NHQ/jsynth-mic/issues
- npm.io page: https://npm.io/package/jsynth-mic

## Alternatives

- [@opentelemetry/exporter-zipkin](https://npm.io/package/@opentelemetry/exporter-zipkin.md) — 14.8M weekly downloads
- [pusher-js](https://npm.io/package/pusher-js.md) — 2.0M weekly downloads
- [browserify](https://npm.io/package/browserify.md) — 1.7M weekly downloads
- [sqs-consumer](https://npm.io/package/sqs-consumer.md) — 1.7M weekly downloads
- [@sanity/eventsource](https://npm.io/package/@sanity/eventsource.md) — 930.8K weekly downloads

## Recent versions

- 0.5.0 (latest) — 2016-02-25
- 0.4.0 — 2014-02-24
- 0.3.0 — 2014-02-24
- 0.2.0 — 2014-02-24

## README

## jsynth-mic

A simple Web Audio API module for accessing the getUserMedia audio stream from a mic/line-in.  Returns an emitter, which.on('node') passes yours listener a Web Audio Node.  See the example. Currently, the opinion of this module is to mix the mic to mono.



```
npm install jsynth-mic
```

## the example

```js
var audioContext = window.AudioContext || webkitAudioContext
var master = new audioContext()

// call the module with the master audio context
var mic = require('./')(master)

// it returns an event emitter
mic.on('node', function(node){
//  console.log(node) // a gain node
  node.connect(master.destination)
})

```

## testing

you can run the example by browserifying entry.js, or using ```opa```

```
npm install -g opa watchify
opa -e entry
```

---
_Source: https://npm.io/package/jsynth-mic · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
