🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

audio-buffer-range-decoder

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

audio-buffer-range-decoder

Decode specified ranges of PCM Wave and Opus webm files on disk to AudioBuffers. Probably only works with electron.

2.0.1
latest
Source
npm
Version published
Weekly downloads
7
250%
Maintainers
1
Weekly downloads
 
Created
Source

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

  • PCM Wave
  • Opus webm (format generated by MediaRecorder)

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.

Keywords

AudioBuffer

FAQs

Package last updated on 01 Aug 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts