Back to Content

SourceBuffer

files/en-us/web/api/sourcebuffer/index.md

latest6.3 KB
Original Source

{{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}}

Instance properties

  • {{domxref("SourceBuffer.appendWindowEnd")}}
    • : Controls the timestamp for the end of the append window.
  • {{domxref("SourceBuffer.appendWindowStart")}}
    • : Controls the timestamp for the start of the append window. This is a timestamp range that can be used to filter what media data is appended to the SourceBuffer. Coded media frames with timestamps within this range will be appended, whereas those outside the range will be filtered out.
  • {{domxref("SourceBuffer.audioTracks")}} {{ReadOnlyInline}}
    • : A list of the audio tracks currently contained inside the SourceBuffer.
  • {{domxref("SourceBuffer.buffered")}} {{ReadOnlyInline}}
    • : Returns the time ranges that are currently buffered in the SourceBuffer.
  • {{domxref("SourceBuffer.mode")}}
    • : Controls how the order of media segments in the SourceBuffer is handled, in terms of whether they can be appended in any order, or they have to be kept in a strict sequence.
  • {{domxref("SourceBuffer.textTracks")}} {{ReadOnlyInline}} {{Experimental_Inline}}
    • : A list of the text tracks currently contained inside the SourceBuffer.
  • {{domxref("SourceBuffer.timestampOffset")}}
    • : Controls the offset applied to timestamps inside media segments that are subsequently appended to the SourceBuffer.
  • {{domxref("SourceBuffer.updating")}} {{ReadOnlyInline}}
    • : A boolean indicating whether the SourceBuffer is currently being updated — i.e., whether an {{domxref("SourceBuffer.appendBuffer", "appendBuffer()")}} or {{domxref("SourceBuffer.remove", "remove()")}} operation is currently in progress.
  • {{domxref("SourceBuffer.videoTracks")}} {{ReadOnlyInline}}
    • : A list of the video tracks currently contained inside the SourceBuffer.

Instance methods

Inherits methods from its parent interface, {{domxref("EventTarget")}}.

  • {{domxref("SourceBuffer.abort()")}}
    • : Aborts the current segment and resets the segment parser.
  • {{domxref("SourceBuffer.appendBuffer()")}}
    • : Appends media segment data from an {{jsxref("ArrayBuffer")}}, a {{jsxref("TypedArray")}} or a {{jsxref("DataView")}} object to the SourceBuffer.
  • {{domxref("SourceBuffer.appendBufferAsync()")}} {{Non-standard_Inline}} {{Experimental_Inline}}
    • : Starts the process of asynchronously appending the specified buffer to the SourceBuffer. Returns a {{jsxref("Promise")}} which is fulfilled once the buffer has been appended.
  • {{domxref("SourceBuffer.changeType()")}}
    • : Changes the {{Glossary("MIME type")}} that future calls to {{domxref("SourceBuffer.appendBuffer", "appendBuffer()")}} will expect the new data to conform to.
  • {{domxref("SourceBuffer.remove()")}}
    • : Removes media segments within a specific time range from the SourceBuffer.
  • {{domxref("SourceBuffer.removeAsync()")}} {{Non-standard_Inline}} {{Experimental_Inline}}
    • : Starts the process of asynchronously removing media segments in the specified range from the SourceBuffer. Returns a {{jsxref("Promise")}} which is fulfilled once all matching segments have been removed.

Events

  • {{domxref("SourceBuffer.abort_event", "abort")}}
    • : Fired when the buffer appending is aborted, because the {{domxref("SourceBuffer.abort()")}} or {{domxref("MediaSource.removeSourceBuffer()")}} method is called while the {{domxref("SourceBuffer.appendBuffer()")}} algorithm is still running. {{domxref("SourceBuffer.updating")}} changes from true to false.
  • {{domxref("SourceBuffer.error_event", "error")}}
    • : Fired when an error occurs during the processing of an {{domxref("SourceBuffer.appendBuffer", "appendBuffer()")}} operation. {{domxref("SourceBuffer.updating")}} changes from true to false.
  • {{domxref("SourceBuffer.update_event", "update")}}
    • : Fired whenever {{domxref("SourceBuffer.appendBuffer()")}} or {{domxref("SourceBuffer.remove()")}} completes. {{domxref("SourceBuffer.updating")}} changes from true to false.
  • {{domxref("SourceBuffer.updateend_event", "updateend")}}
    • : Fired after the (not necessarily successful) completion of an {{domxref("SourceBuffer.appendBuffer", "appendBuffer()")}} or {{domxref("SourceBuffer.remove", "remove()")}} operation. This event is fired after the update, error, or abort events.
  • {{domxref("SourceBuffer.updatestart_event", "updatestart")}}
    • : Fired when an {{domxref("SourceBuffer.appendBuffer", "appendBuffer()")}} or {{domxref("SourceBuffer.remove", "remove()")}} operation begins. {{domxref("SourceBuffer.updating", "updating")}} changes from false to true.

Examples

Loading a video chunk by chunk

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

js
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

{{Specifications}}

Browser compatibility

{{Compat}}

See also

  • {{domxref("MediaSource")}}
  • {{domxref("SourceBufferList")}}