# @synthlet/chorus-t

> A chorus (based on Tagu Audio Line) audio effect in a worklet

Latest version **0.1.1** (published 2024-09-08) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install @synthlet/chorus-t
pnpm add @synthlet/chorus-t
yarn add @synthlet/chorus-t
bun add @synthlet/chorus-t
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 0.1.1 |
| Published | 2024-09-08 |
| First published | 2024-09-07 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 30.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | danigb |
| Keywords | chorus, audio-effect, modular, synthesis, synthlet |

## Links

- npm: https://www.npmjs.com/package/@synthlet/chorus-t
- npm.io page: https://npm.io/package/@synthlet/chorus-t

## Recent versions

- 0.1.1 (latest) — 2024-09-08
- 0.1.0 — 2024-09-07

## README

# @synthlet/chorus-t

> Chorus (based on TAL Noisemaker) audio effect

Part of [synthlet](https://github.com/danigb/synthlet) modular synthesis.

```ts
import { registerChorusWorklet, createChorus } from "synthlet"; // or "@synthlet/chorus-t";

const audioContext = new AudioContext();

await registerChorusWorklet(audioContext);

const osc = new Oscillator(audioContext, { frequency: 440 });
osc.start();
const chorus = createChorus(audioContext);

osc.connect(chorus).connect(audioContext.destination);
```

## References

The implementation of this Chorus is based on [TAL-Noisemaker](https://github.com/Nexbit/tal-noisemaker)

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