Class: TimedMetadata
-
TimedMetadata provides properties for handling timed metadata in cast.framework.
-
It includes properties for DASH-specific and HLS-specific timed metadata.
-
Properties like id, startTime, and endTime define the timed metadata event.
Properties
(non-null cast.framework.DashTimedMetadata or undefined)
Object encapsulating all DASH-specific timed metadata.
endTime
(number or undefined)
The aboslute media time (in seconds) that the timed metadata should end.
(non-null cast.framework.HlsTimedMetadata or undefined)
Object encapsulating all HLS-specific timed metadata from
#EXT-X-DATERANGE.
id
(string or undefined)
A string that uniquely identifies the timed metadata event.
startTime
(number or undefined)
The aboslute media time (in seconds) that the timed metadata should
start.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-09-18 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-18 UTC."],[],["`TimedMetadata` is a class with properties for managing timed metadata. It stores `startTime` and `endTime` in seconds, defining the duration of the metadata. `id` provides a unique identifier. `dashTimedMetadata` contains DASH-specific data, while `hlsTimedMetadata` holds HLS-specific data from #EXT-X-DATERANGE. The class is instanciated using a constructor called `TimedMetadata`.\n"]]