files/en-us/web/api/sourcebuffer/appendbufferasync/index.md
{{APIRef("Media Source Extensions")}}{{AvailableInWorkers("window_and_dedicated")}}{{Non-standard_Header}}{{SeeCompatTable}}
The appendBufferAsync() method
of the {{domxref("SourceBuffer")}} interface begins the process of asynchronously
appending media segment data from an {{jsxref("ArrayBuffer")}},
a {{jsxref("TypedArray")}} or a {{jsxref("DataView")}} object to the SourceBuffer object.
It returns a {{jsxref("Promise")}} which is fulfilled once the buffer has been appended.
appendBufferAsync(source)
source
SourceBuffer.A {{jsxref("Promise")}} which is fulfilled when the buffer has been added successfully to the SourceBuffer object,
or null, if the request could not be initiated.
This simplified example async function, fillSourceBuffer(), takes as input
parameters buffer, an {{jsxref("ArrayBuffer")}}, a {{jsxref("TypedArray")}}, or a {{jsxref("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);
}
}
This feature is not part of any specification. It is not on track to become a standard.
{{Compat}}