18 lines
513 B
HTML
18 lines
513 B
HTML
{{ $id := .Get "id" }}
|
|
|
|
<div class="video-container">
|
|
<video
|
|
id="{{ $id }}"
|
|
controls
|
|
preload="auto"
|
|
width="100%"
|
|
height="auto"
|
|
poster="/static/videos/posters/{{ $id }}.webp">
|
|
<source src="/static/videos/hls/{{ $id }}/index.m3u8" type="application/x-mpegURL">
|
|
<source src="/static/videos/{{ $id }}.mp4" type="video/mp4">
|
|
<p>
|
|
To view this video please enable JavaScript, and consider upgrading to a
|
|
web browser that supports HTML5 video
|
|
</p>
|
|
</video>
|
|
</div> |