mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 12:24:38 +03:00
* Remove forceMkv and forceHEVC * Add HLS support and refactor * Add new streaming endpoints
11 lines
267 B
TypeScript
11 lines
267 B
TypeScript
const playerID = "main-jwplayer";
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
const getPlayer = () => (window as any).jwplayer(playerID);
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
|
|
export default {
|
|
playerID,
|
|
getPlayer,
|
|
};
|