HTMLMediaElement.seekable
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
io error: No such file or directory (os error 2) (/home/runner/work/yari/yari/mdn/translated-content/files/ko/web/api/htmlmediaelement/index.md)
HTMLMediaElement
객체의 seekable
읽기 전용 속성은 사용자 에이전트가 seekable
속성에 접근할 때 찾을 수 있는 미디어 리소스의 범위를 나타내는 새로운 정적 정규화된 TimeRanges
객체를 반환합니다.
값
seekable
속성에 접근할 때 사용자 에이전트가 찾을 수 있는 미디어 리소스의 범위를 나타내는 새로운 정적 정규화된 TimeRanges 객체입니다.
예제
js
const video = document.querySelector("video");
const timeRangesObject = video.seekable;
const timeRanges = [];
// 객체를 살펴보고 배열을 출력합니다
for (let count = 0; count < timeRangesObject.length; count++) {
timeRanges.push([timeRangesObject.start(count), timeRangesObject.end(count)]);
}
명세
Specification |
---|
HTML Standard # dom-media-seekable-dev |
Media Source Extensions™ # htmlmediaelement-extensions |
브라우저 호환성
BCD tables only load in the browser
같이 보기
- seekable을 정의하는 인터페이스는
HTMLMediaElement
입니다. - 미디어 소스 확장 API
- 미디어 버퍼링, 검색 및 시간 범위