Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Decode from buffer #11

Open
aspergatus opened this issue Apr 23, 2015 · 3 comments
Open

Decode from buffer #11

aspergatus opened this issue Apr 23, 2015 · 3 comments

Comments

@aspergatus
Copy link

Hi

Is there a way to decode alac from a buffer? I have looked at AV carefully, but I only found the way using AV.Asset.fromBuffer(buffer). However, I did not figure out how to define the format to be alac.

@devongovett
Copy link
Member

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.).

@aspergatus
Copy link
Author

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.

@devongovett
Copy link
Member

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants