Back to Content

MediaSource: setLiveSeekableRange() method

files/en-us/web/api/mediasource/setliveseekablerange/index.md

latest1.1 KB
Original Source

{{APIRef("Media Source Extensions")}}{{AvailableInWorkers("window_and_dedicated")}}

The setLiveSeekableRange() method of the {{domxref("MediaSource")}} interface sets the range that the user can seek to in the media element.

Syntax

js-nolint
setLiveSeekableRange(start, end)

Parameters

  • start
    • : The start of the seekable range to set in seconds measured from the beginning of the source. If the duration of the media source is positive infinity, then the {{domxref("TimeRanges")}} object returned by the {{domxref("HTMLMediaElement.seekable")}} property will have a start timestamp no greater than this value.
  • end
    • : The end of the seekable range to set in seconds measured from the beginning of the source. If the duration of the media source is positive infinity, then the {{domxref("TimeRanges")}} object returned by the {{domxref("HTMLMediaElement.seekable")}} property will have an end timestamp no less than this value.

Return value

None ({{jsxref("undefined")}}).

Examples

js
// TBD

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}