mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-07-01 18:12:51 +01:00
Currently MPV doesn't support HDR via external displays. giving people the choice of HDR/limited ass sub support/SDR full sub support Signed-off-by: Lance Chant <13349722+lancechant@users.noreply.github.com>
20 lines
621 B
TypeScript
20 lines
621 B
TypeScript
// Re-export the shared player contract from mpv-player so ExoPlayer
|
|
// and MPV present identical surfaces to React. The MPV-prefixed setting
|
|
// keys keep their names to avoid migrating existing installs.
|
|
export type {
|
|
AudioTrack,
|
|
MpvPlayerViewProps,
|
|
MpvPlayerViewRef,
|
|
NowPlayingMetadata,
|
|
OnErrorEventPayload,
|
|
OnLoadEventPayload,
|
|
OnPictureInPictureChangePayload,
|
|
OnPlaybackStateChangePayload,
|
|
OnProgressEventPayload,
|
|
OnTracksReadyEventPayload,
|
|
SubtitleTrack,
|
|
TechnicalInfo,
|
|
VideoSource,
|
|
} from "../mpv-player/src/MpvPlayer.types";
|
|
export { default as ExoPlayerView } from "./src/ExoPlayerView";
|