files/en-us/web/api/sourcebuffer/index.md
{{APIRef("Media Source Extensions")}}{{AvailableInWorkers("window_and_dedicated")}}
The SourceBuffer interface represents a chunk of media to be passed into an {{domxref("HTMLMediaElement")}} and played, via a {{domxref("MediaSource")}} object. This can be made up of one or several media segments.
{{InheritanceDiagram}}
SourceBuffer. Coded media frames with timestamps within this range will be appended, whereas those outside the range will be filtered out.SourceBuffer.SourceBuffer.SourceBuffer is handled, in terms of whether they can be appended in any order, or they have to be kept in a strict sequence.SourceBuffer.SourceBuffer.SourceBuffer is currently being updated — i.e., whether an {{domxref("SourceBuffer.appendBuffer", "appendBuffer()")}} or {{domxref("SourceBuffer.remove", "remove()")}} operation is currently in progress.SourceBuffer.Inherits methods from its parent interface, {{domxref("EventTarget")}}.
SourceBuffer.SourceBuffer. Returns a {{jsxref("Promise")}} which is fulfilled once the buffer has been appended.SourceBuffer.SourceBuffer. Returns a {{jsxref("Promise")}} which is fulfilled once all matching segments have been removed.true to false.true to false.true to false.update, error, or abort events.false to true.The following example loads a video chunk by chunk as fast as possible, playing it as soon as it can.
You can see the complete code at https://github.com/mdn/dom-examples/tree/main/sourcebuffer and try the demo live at https://mdn.github.io/dom-examples/sourcebuffer/.
const video = document.querySelector("video");
const assetURL = "frag_bunny.mp4";
// Need to be specific for Blink regarding codecs
const mimeCodec = 'video/mp4; codecs="avc1.42E01E, mp4a.40.2"';
function loadVideo() {
if (MediaSource.isTypeSupported(mimeCodec)) {
const mediaSource = new MediaSource();
console.log(mediaSource.readyState); // closed
video.src = URL.createObjectURL(mediaSource);
mediaSource.addEventListener("sourceopen", sourceOpen);
} else {
console.error("Unsupported MIME type or codec: ", mimeCodec);
}
}
async function sourceOpen() {
console.log(this.readyState); // open
const sourceBuffer = this.addSourceBuffer(mimeCodec);
const response = await fetch(assetURL);
const buffer = await response.arrayBuffer();
sourceBuffer.addEventListener("updateend", () => {
this.endOfStream();
video.play();
console.log(this.readyState); // ended
});
sourceBuffer.appendBuffer(buffer);
}
const load = document.querySelector("#load");
load.addEventListener("click", loadVideo);
{{Specifications}}
{{Compat}}