Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@alac/encoder

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@alac/encoder

An encoder that produces raw ALAC data from PCM data.

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

ALAC Encoder

An encoder that produces raw ALAC data from PCM data.

Installation

npm install --save @alac/encoder

Usage

// The raw data you want to encode, could also be a stream or generated on the fly
const pcmData = new Uint8Array(/* ... */)

const encoder = new ALACEncoder()

// This buffer will be written into from the encoder, it needs to hold the largest possible packet size
const outputBuffer = new Uint8Array(encoder.bytesPerPacket + ALACEncoder.maxEscapeHeaderBytes)

for (let pos = 0; pos < pcmData.byteLength; pos += encoder.bytesPerPacket) {
  // Take the next `encoder.bytesPerPacket` bytes from the raw PCM data
  const chunk = pcmData.subarray(pos, pos + encoder.bytesPerPacket)

  // Encode those bytes into one packet
  const bytesWritten = encoder.encodeChunk(chunk, outputBuffer)

  // Read the first `bytesWritten` bytes of the output buffer to get the final packet
  const packet = outputBuffer.slice(0, bytesWritten)
}

FAQs

Package last updated on 07 Jan 2019

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