audio-buffer-range-decoder

2.0.1 • Public • Published

audio-buffer-range-decoder

Decode specified ranges of PCM Wave or Opus webm files on disk to AudioBuffers. Probably only works if you are using electron.

Useful for streaming large audio files from disk when you don't want to load the whole thing into memory.

NPM

Supported formats

Includes static builds of ffmpeg for reading the Opus formatted files. Supported platforms: darwin, linux, win32

API

var RangeDecoder = require('audio-buffer-range-decoder')

var decodeRange = RangeDecoder(filePath, options, onLoad)

Specify filePath on disk. Opens the file ready for access.

onLoad(err, meta) is called when meta data has loaded.

Returns a decodeRange function.

Options:

  • fs: pass in fs implementation (required)
  • audio: instance of AudioContext to use for decoding (required)

decodeRange(startTime, duration, callback)

Pass in startTime and duration in seconds. callback(err, audioBuffer) will be called when data has been decoded or an error has occurred.

decodeRange.close()

Call this when you are done reading to close the underlying file descriptor.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.0.1
    3
    • latest

Version History

Package Sidebar

Install

npm i audio-buffer-range-decoder

Weekly Downloads

3

Version

2.0.1

License

MIT

Last publish

Collaborators

  • mmckegg