blob: ae108b12410754fd5954b22486530a8c22e6e4bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<div style="max-width: <?=h($width)?>px; max-height: <?=h($height)?>px;" class="video-wrap">
<video
autoplay="autoplay"
preload="auto"
width="<?=h($width)?>"
height="<?=h($height)?>"
style="width: 100%; height: 100%;"
class="relive mejs"
>
<source
src="<?=h(forceproto($talk['playlist']))?>"
title="h.264 (HLS)"
type="application/x-mpegURL"
/>
</video>
</div>
|