---
title: SourceBuffer
slug: Web/API/SourceBuffer
tags:
- API
- Audio
- Experimental
- Interface
- MSE
- Media Source Extensions
- NeedsTranslation
- Reference
- SourceBuffer
- TopicStub
- Video
translation_of: Web/API/SourceBuffer
---
{{APIRef("Media Source Extensions")}}
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}}
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}}
- 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.trackDefaults")}}
- Specifies the default values to use if kind, label, and/or language information is not available in the initialization segment of the media to be 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()")}}, {{domxref("SourceBuffer.appendStream()")}}, or {{domxref("SourceBuffer.remove()")}} operation is currently in progress.
- {{domxref("SourceBuffer.videoTracks")}} {{readonlyInline}}
- A list of the video tracks currently contained inside the
SourceBuffer
.
Event handlers
- {{domxref("SourceBuffer.onabort")}}
- Fired whenever {{domxref("SourceBuffer.appendBuffer()")}} or {{domxref("SourceBuffer.appendStream()")}} is ended by a call to {{domxref("SourceBuffer.abort()")}}. {{domxref("SourceBuffer.updating")}} changes from
true
to false
.
- {{domxref("SourceBuffer.onerror")}}
- Fired whenever an error occurs during {{domxref("SourceBuffer.appendBuffer()")}} or {{domxref("SourceBuffer.appendStream()")}}. {{domxref("SourceBuffer.updating")}} changes from
true
to false
.
- {{domxref("SourceBuffer.onupdate")}}
- Fired whenever {{domxref("SourceBuffer.appendBuffer()")}} method or the {{domxref("SourceBuffer.remove()")}} completes. {{domxref("SourceBuffer.updating")}} changes from
true
to false
. This event is fired before onupdateend
.
- {{domxref("SourceBuffer.onupdateend")}}
- Fired whenever {{domxref("SourceBuffer.appendBuffer()")}} method or the {{domxref("SourceBuffer.remove()")}} has ended. This event is fired after
onupdate
.
- {{domxref("SourceBuffer.onupdatestart")}}
- Fired whenever the value of {{domxref("SourceBuffer.updating")}} transitions from
false
to true
.
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 {{domxref("ArrayBuffer")}} or {{domxref("ArrayBufferView")}} object to the
SourceBuffer
.
- {{domxref("SourceBuffer.appendBufferAsync()")}} {{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.appendStream()")}}
- Appends media segment data from a
ReadableStream
object to the SourceBuffer
.
- {{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()")}} {{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.
Examples
The following simple example loads a video chunk by chunk as fast as possible, playing it as soon as it can. This example was written by Nick Desaulniers and can be viewed live here (you can also download the source for further investigation.)
var video = document.querySelector('video');
var assetURL = 'frag_bunny.mp4';
// Need to be specific for Blink regarding codecs
// ./mp4info frag_bunny.mp4 | grep Codec
var mimeCodec = 'video/mp4; codecs="avc1.42E01E, mp4a.40.2"';
if ('MediaSource' in window && MediaSource.isTypeSupported(mimeCodec)) {
var 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);
}
function sourceOpen (_) {
//console.log(this.readyState); // open
var mediaSource = this;
var sourceBuffer = mediaSource.addSourceBuffer(mimeCodec);
fetchAB(assetURL, function (buf) {
sourceBuffer.addEventListener('updateend', function (_) {
mediaSource.endOfStream();
video.play();
//console.log(mediaSource.readyState); // ended
});
sourceBuffer.appendBuffer(buf);
});
}
function fetchAB (url, cb) {
console.log(url);
var xhr = new XMLHttpRequest;
xhr.open('get', url);
xhr.responseType = 'arraybuffer';
xhr.onload = function () {
cb(xhr.response);
};
xhr.send();
}
Specifications
Specification |
Status |
Comment |
{{SpecName('Media Source Extensions', '#sourcebuffer', 'SourceBuffer')}} |
{{Spec2('Media Source Extensions')}} |
Initial definition. |
Browser compatibility
{{Compat("api.SourceBuffer")}}
See also
- {{domxref("MediaSource")}}
- {{domxref("SourceBufferList")}}