Socket
Socket
Sign inDemoInstall

audio-buffer-range-decoder

Package Overview
Dependencies
4
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

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.


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
5.44 MB
Created
Weekly downloads
 

Readme

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

Last updated on 01 Aug 2016

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc