blob: 23bf051074e2a371c970a27267cb3e3dbe2b201a (
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
41
42
43
44
45
|
<?php
function link_index()
{
return '';
}
function link_room($room)
{
return rawurlencode($room).'/';
}
function link_player($room, $format, $translated = false)
{
$isDefaultFormat = in_array($format, array('hq', 'video'));
return rawurlencode($room).'/'.($isDefaultFormat ? '' : rawurlencode($format).'/').($translated ? 'translated/' : '');
}
function link_stream($protocol, $room, $format, $translated = false)
{
$language = $translated ? 'translated' : 'native';
switch ($protocol) {
case 'rtmp':
return 'rtmp://rtmp.streaming.media.ccc.de:1935/stream/'.rawurlencode($room).'_'.rawurlencode($language).'_'.rawurlencode($format);
case 'hls':
return 'http://hls.streaming.media.ccc.de/hls/'.rawurlencode($room).'_'.rawurlencode($language).'_'.rawurlencode($format).'.m3u8';
}
return '#';
}
function baseurl()
{
if(isset($GLOBALS['CONFIG']['baseurl']))
return $GLOBALS['CONFIG']['baseurl'];
$base = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']) ? 'https://' : 'http://';
$base .= $_SERVER['HTTP_HOST'];
$base .= rtrim(dirname($_SERVER['SCRIPT_NAME']), '/').'/';
return $base;
}
|