mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
24 lines
754 B
TypeScript
24 lines
754 B
TypeScript
/**
|
|
* Events triggered by media player plugins.
|
|
* TODO: This list is incomplete
|
|
*/
|
|
export enum PlayerEvent {
|
|
Error = 'error',
|
|
FullscreenChange = 'fullscreenchange',
|
|
ItemStarted = 'itemstarted',
|
|
ItemStopped = 'itemstopped',
|
|
MediaStreamsChange = 'mediastreamschange',
|
|
Pause = 'pause',
|
|
PlaybackStart = 'playbackstart',
|
|
PlaybackStop = 'playbackstop',
|
|
PlaylistItemAdd = 'playlistitemadd',
|
|
PlaylistItemMove = 'playlistitemmove',
|
|
PlaylistItemRemove = 'playlistitemremove',
|
|
PromptSkip = 'promptskip',
|
|
RepeatModeChange = 'repeatmodechange',
|
|
ShuffleModeChange = 'shufflequeuemodechange',
|
|
Stopped = 'stopped',
|
|
TimeUpdate = 'timeupdate',
|
|
Unpause = 'unpause',
|
|
VolumeChange = 'volumechange'
|
|
}
|