
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
@alac/decoder
Advanced tools
A decoder that turns raw ALAC data into PCM data.
npm install --save @alac/decoder
const cookie = new Uint8Array(/* ... */) // e.g. from CAF 'kuki' chunk
const packets = new Uint32Array(/* ... */) // e.g. from CAF 'pakt' chunk
const decoder = new ALACDecoder(cookie)
// This buffer will be written into from the decoder, it needs to hold at least one full decoded packet
const outputBuffer = new Uint8Array(decoder.bytesPerPacket)
for (const size of packets) {
const packet = new Uint8Array(/* ... */) // the next `size` bytes from your ALAC data
const framesWritten = decoder.decodeChunk(packet, outputBuffer)
const bytesWritten = framesWritten * decoder.bytesPerFrame
// The first `bytesWritten` bytes will now be filled with PCM data
const decodedChunk = outputBuffer.slice(0, bytesWritten)
}
FAQs
A decoder that turns raw ALAC data into PCM data.
The npm package @alac/decoder receives a total of 0 weekly downloads. As such, @alac/decoder popularity was classified as not popular.
We found that @alac/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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.