UNPKG

react-tv-player

Version:

A React media player component for TV devices. With custom UI and arrow-key navigation, it can play a variety of URLs like file paths, HLS/DASH streams and even YouTube & Vimeo links directly. Packaged as an npm library for easy integration.

9 lines (8 loc) 231 B
export type MediaType = { url: string | string[] | MediaStream; title?: string; subTitle?: string; preview?: string | boolean; }; declare function App(): import("react/jsx-runtime").JSX.Element; export default App;