클래스: SeekableRange
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-07-25(UTC)
[null,null,["최종 업데이트: 2025-07-25(UTC)"],[[["\u003cp\u003e\u003ccode\u003eSeekableRange\u003c/code\u003e helps define the portion of media that can be sought (fast-forwarded or rewound).\u003c/p\u003e\n"],["\u003cp\u003eIt's initialized using \u003ccode\u003estart\u003c/code\u003e and \u003ccode\u003eend\u003c/code\u003e values representing seconds in the media.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003estart\u003c/code\u003e and \u003ccode\u003eend\u003c/code\u003e properties store the beginning and ending points of the seekable range respectively, which can be retrieved later.\u003c/p\u003e\n"]]],["The `SeekableRange` class defines the range within a media stream that a user can navigate. It includes two key properties: `start` and `end`, representing the beginning and end of this seekable range in seconds. These are optional numbers and can be undefined. The class constructor, `SeekableRange`, takes `start` and `end` as its parameters to define the specific range.\n"],null,["# Class: SeekableRange\n\ncast.[framework](/cast/docs/reference/web_receiver/cast.framework).[messages](/cast/docs/reference/web_receiver/cast.framework.messages).SeekableRange\n======================================================================================================================================================\n\nclass static\n\nProvides the seekable range in seconds.\n\nConstructor\n-----------\n\n### SeekableRange\n\nnew\nSeekableRange(start, end)\n\n| #### Parameter ||\n|-------|-----------------|\n| start | Optional number |\n| end | Optional number |\n\nProperties\n----------\n\n### end\n\n(number or undefined)\n\nThe end of the seekable range in seconds.\n\n### start\n\n(number or undefined)\n\nThe start of the seekable range in seconds."]]