JSPM

@thi.ng/dsp-io-wav

0.1.53
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 577
  • Score
    100M100P100Q100733F
  • License Apache-2.0

WAV file format generation

Package Exports

  • @thi.ng/dsp-io-wav

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@thi.ng/dsp-io-wav) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

dsp-io-wav

npm version npm downloads Twitter Follow

This project is part of the @thi.ng/umbrella monorepo.

About

WAV file format generation. This is a support package for @thi.ng/dsp.

Status

ALPHA - bleeding edge / work-in-progress

Search or submit any issues for this package

Installation

yarn add @thi.ng/dsp-io-wav
// ES module
<script type="module" src="https://unpkg.com/@thi.ng/dsp-io-wav?module" crossorigin></script>

// UMD
<script src="https://unpkg.com/@thi.ng/dsp-io-wav/lib/index.umd.js" crossorigin></script>

Package sizes (gzipped, pre-treeshake): ESM: 502 bytes / CJS: 562 bytes / UMD: 645 bytes

Dependencies

API

Generated API docs

TODO

import { osc, sin } from "@thi.ng/dsp";
import { wavByteArray } from "@thi.ng/dsp-io-wav";

const FS = 48000;

// write 1 second 24bit mono WAV file of 440Hz sine
fs.writeFileSync(
  "sine-440.wav",
  wavByteArray(
    { sampleRate: FS, channels: 1, length: FS, bits: 24 },
    osc(sin, 440 / FS)
  )
);

Authors

Karsten Schmidt

If this project contributes to an academic publication, please cite it as:

@misc{thing-dsp-io-wav,
  title = "@thi.ng/dsp-io-wav",
  author = "Karsten Schmidt",
  note = "https://thi.ng/dsp-io-wav",
  year = 2020
}

License

© 2020 - 2021 Karsten Schmidt // Apache Software License 2.0