Firefox Tomorrow

web api instance method

SourceBuffer: appendBufferAsync() method

View on MDN ↗

Available in workersLimited availability

The appendBufferAsync() method of the SourceBuffer interface begins the process of asynchronously appending media segment data from an ArrayBuffer, a TypedArray or a DataView object to the SourceBuffer object. It returns a Promise which is fulfilled once the buffer has been appended.

Syntax

appendBufferAsync(source)

Parameters

Return value

A Promise which is fulfilled when the buffer has been added successfully to the SourceBuffer object, or null, if the request could not be initiated.

Examples

This simplified example async function, fillSourceBuffer(), takes as input parameters buffer, an ArrayBuffer, a TypedArray, or a DataView, and a SourceBuffer object to which to append the source media from the buffer.

async function fillSourceBuffer(buffer, msBuffer) {
  try {
    while (true) {
      await msBuffer.appendBufferAsync(buffer);
    }
  } catch (e) {
    handleException(e);
  }
}

Specifications

This feature is not part of any specification. It is not on track to become a standard.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also