UNPKG

@svta/common-media-library

Version:
44 lines 898 B
/** * CMCD v2 player states for the 'sta' key. * * @group CMCD * * @enum * * @beta */ export const CmcdPlayerState = { /** * Starting: Initial startup of the player. */ STARTING: 's', /** * Playing: The player is actively rendering content. */ PLAYING: 'p', /** * Seeking: The player is seeking to a new position. */ SEEKING: 'k', /** * Rebuffering: The player is buffering data during playback. */ REBUFFERING: 'r', /** * Paused: The player is paused. */ PAUSED: 'a', /** * Waiting: The player is waiting for a user action or another event. */ WAITING: 'w', /** * Ended: The media has finished playing. */ ENDED: 'e', /** * Fatal Error: The player has encountered a fatal error. */ FATAL_ERROR: 'f', }; //# sourceMappingURL=CmcdPlayerState.js.map