New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
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
  • Socket score

Version published
Maintainers
1
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

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc