p-stream/src/components/player
Pas ab5db9807e Revert "fix mp4 loading"
This reverts commit e93de414bb.
2025-06-15 23:58:21 -06:00
..
atoms add compact episodes view 2025-06-11 19:43:52 -06:00
base remove clean subtitles function 2025-06-05 13:00:29 -06:00
display Revert "fix mp4 loading" 2025-06-15 23:58:21 -06:00
hooks add all preferences and fix 2025-06-06 10:14:22 -06:00
internals fix some styles 2025-06-07 18:28:11 -06:00
utils it works! 2024-05-23 11:45:19 +00:00
index.tsx move video to old and setup new video structure 2023-07-23 15:00:08 +02:00
Player.tsx Update player info button 2025-03-08 11:57:04 -07:00
README.md Fix typo in player/README.md 2023-12-28 01:09:03 +09:00

Video player component

Video player is quite a complex component, so here is a rundown of all the parts

Composable parts

These parts can be used to build any shape of a video player.

  • /atoms- any ui element that controls the player. (Seekbar, Pause button, quality selection, etc)
  • /base - base components that are used to build a player. Like the main container

internal parts

These parts are internally used, they aren't exported. Do not use them outside of player internals.

/display

The display interface, abstraction on how to actually play the content (e.g Video element, chrome casting, etc)

  • It must be completely separate from any react code
  • It must not interact with state, pass async data back with events

/internals

Internal components that are always rendered on every player.

  • Only components that are always present on the player instance, they must never unmount

/utils

miscellaneous logic, put anything that is unique to the video player internals.

/hooks

Hooks only used for video player.

  • only exception is usePlayer, as its used outside of the player to control the player

~/src/stores/player

State for the video player.

  • Only parts related to the video player may utilize the state