blob: 619d50b144f0afb38a646302fcff02d8e3c62a84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<h3>Formats</h3>
<ul>
<? foreach(array('hq', 'lq') as $iter): ?>
<li>
<span class="label filetype"><?=h(strtoupper($iter))?></span>
<a href="<?=h(link_player($room, $iter))?>">
<span class="fa fa-video-camera"></span>
live video-podcast
</a>
</li>
<? endforeach ?>
</ul>
<hr />
<? foreach(array('rtmp', 'hls') as $protocol): ?>
<h3>Directlinks (<?=h(strtoupper($protocol))?>)</h3>
<ul>
<? foreach(array('hq', 'lq') as $iter): ?>
<li>
<span class="label filetype"><?=h(strtoupper($iter))?></span>
<a href="<?=h(link_stream($protocol, $room, $iter))?>">
<span class="fa fa-video-camera"></span>
live video-podcast
</a>
</li>
<? endforeach ?>
</ul>
<? endforeach ?>
<h3>Directlinks (WebM)</h3>
<ul>
<li>
<span class="label filetype">HQ</span>
<a href="<?=h(link_stream('webm', $room, 'webm'))?>">
<span class="fa fa-video-camera"></span>
live video-podcast
</a>
</li>
</ul>
|