This is the video player: the core of the entire platform.
The video player is built by 4 main objects:
video-container
is the container of all other elements: it has the reference of the video: video-id
and event-type
event-type
could be vod
, live
or cast
. video-id
is the video reference for vod
and cast
, the channel reference for the live
auto-play
enables the automatic play of the video once the page is loaded. can be just true
(if you don't want videos to start automatically, simply do not put it)video-title
is the simple title of the video, so you're able to insert it wherever you wantvideo-description
is the simple description of the video, so you're able to insert it wherever you wantvideo-player
is the real player of the video: where the video will be effectively played<video-container video-id="d3aee0d4-a2d5-4881-a300-44d85355f593" event-type="vod">
<h1><video-title></video-title></h1>
<p><video-description></video-description></p>
<video-player></video-player>
</video-container>