Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
audio-buffer-range-decoder
Advanced tools
Decode specified ranges of PCM Wave and Opus webm files on disk to AudioBuffers. Probably only works with electron.
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.
Includes static builds of ffmpeg for reading the Opus formatted files. Supported platforms: darwin, linux, win32
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.
FAQs
Decode specified ranges of PCM Wave and Opus webm files on disk to AudioBuffers. Probably only works with electron.
We found that audio-buffer-range-decoder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.