blob: 718b2490990e7e7ae75eb852233074c67aeeb2c0 (
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"
>
<source
src="<?=h($talk['playlist'])?>"
title="h.264 (HLS)"
type="application/x-mpegURL"
/>
</video>
</div>
|