Giter Site home page Giter Site logo

Decode from buffer about alac.js HOT 3 OPEN

aspergatus avatar aspergatus commented on July 17, 2024
Decode from buffer

from alac.js.

Comments (3)

devongovett avatar devongovett commented on July 17, 2024

Aurora.js will automatically detect that it is alac for you if your audio data is in a supported container format (e.g. MP4, CAF, etc.).

from alac.js.

aspergatus avatar aspergatus commented on July 17, 2024

Thank for reply.

My data is not in a container, but come directly from an airplay sender. As i am trying to add alac support to airsonos. Is there a way to decode it?

Sent from my iPhone

On 23 Apr 2015, at 18:17, Devon Govett [email protected] wrote:

Aurora.js will automatically detect that it is alac for you if your audio data is in a supported container format (e.g. MP4, CAF, etc.).


Reply to this email directly or view it on GitHub.

from alac.js.

devongovett avatar devongovett commented on July 17, 2024

Ah, ok. There isn't an easy built-in way to work with raw audio outside a container, but you can write your own "demuxer" for it. Here's an example (untested):

var RawALACDemuxer = AV.Demuxer.extend(function() {
  AV.Demuxer.register(this);

  this.probe = function(stream) {
    // if you have some way of detecting your alac stream, use it here.
    // this assumes it is always ALAC.
    return true;
  };

  this.prototype.readChunk = function() {
    if (!this.emittedFormat) {
      // I *think* airplay always uses 16-bit, 2 channel, 44.1kHz
      // but I'm not sure.
      this.emit('format', {
        formatID: 'alac',
        sampleRate: 44100,
        channelsPerFrame: 2,
        bitsPerChannel: 16
      });

      this.emittedFormat = true;
    }

    // TODO: figure out where to get the magic cookie from...
    if (!this.emittedCookie) {
      this.emit('cookie', DATA_HERE);
      this.emittedCookie = true;
    }

    var buffer = this.stream.readSingleBuffer(this.stream.remainingBytes());
    this.emit('data', buffer);
  };
});

As mentioned in the comment, ALAC also has a "magic cookie", with some additional information needed by the decoder. This information would normally live in the container, but since you don't have a container, I'm not sure where it should be. My guess is that it would be sent when you initially connect to an airplay stream, but I'm not exactly sure where/how. You'll have to figure that out and emit an AV.Buffer containing the cookie data.

From this Go implementation of airplay, it looks like the data is in the RTSP ANNOUNCE packet, and is then converted to an ALACSpecificConfig struct. Not sure how that fits into your backend.

from alac.js.

Related Issues (13)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.