streaming-website/pages/room.php

76 lines
1.4 KiB
PHP
Raw Normal View History

2014-10-01 14:42:22 +00:00
<?php
2014-11-09 19:28:50 +00:00
require_once('lib/bootstrap.php');
2014-10-01 14:42:22 +00:00
$room = $_GET['room'];
$language = $_GET['language'];
2015-02-27 16:21:51 +00:00
$selection = $_GET['selection'];
2014-10-01 14:42:22 +00:00
2015-02-27 16:21:51 +00:00
switch($selection) {
2014-10-01 14:42:22 +00:00
case 'audio':
$type = 'audio';
2015-02-27 16:21:51 +00:00
$title = 'Audio';
break;
case 'music':
$type = 'audio';
$title = 'Music';
2014-10-01 14:42:22 +00:00
break;
case 'slides':
$type = 'slides';
2015-02-27 16:21:51 +00:00
$title = 'Slides';
2014-10-01 14:42:22 +00:00
break;
2014-10-02 14:19:15 +00:00
case 'hd':
2014-10-01 14:42:22 +00:00
$type = 'video';
2015-02-27 16:21:51 +00:00
$title = 'FullHD Video';
2014-10-01 14:42:22 +00:00
$width = 1920;
$height = 1080;
break;
case 'sd':
2014-10-01 14:42:22 +00:00
$type = 'video';
2015-02-27 16:21:51 +00:00
$title = 'SD Video';
2014-10-01 14:42:22 +00:00
$width = 1024;
$height = 576;
break;
}
2014-10-02 14:19:15 +00:00
2015-02-27 16:21:51 +00:00
$formats = get("ROOMS.$room.FORMATS");
$types = array();
if(count(array_intersect(array('rtmp-sd', 'rtmp-hd', 'hls-sd', 'hls-hd', 'webm-sd', 'webm-hd'), $formats)) > 0)
$types[] = 'video';
2015-02-27 16:21:51 +00:00
if(count(array_intersect(array('audio-mp3', 'audio-opus'), $formats)) > 0)
$types[] = 'audio';
2014-10-01 14:42:22 +00:00
2015-02-27 16:21:51 +00:00
if(count(array_intersect(array('slides'), $formats)) > 0)
$types[] = 'slides';
echo $tpl->render(array(
'page' => 'room',
'title' => get("ROOMS.$room.DISPLAY").' '.$title,
2014-10-01 14:42:22 +00:00
'room' => $room,
2014-11-03 20:53:30 +00:00
'program' => program(),
2014-10-01 14:42:22 +00:00
'type' => $type,
2015-02-27 16:21:51 +00:00
'types' => $types,
2014-10-01 14:42:22 +00:00
'width' => @$width,
'height' => @$height,
'language' => $language,
2014-10-19 11:44:34 +00:00
'translated' => ($language == 'translated'),
2015-02-27 16:21:51 +00:00
'selection' => $selection,
'hlsformat' => ($selection == 'hd' ? 'auto' : $selection),
2014-11-09 21:53:16 +00:00
// miniroom = no translation, no slides, no irc, no program
2014-11-09 21:53:16 +00:00
// -> sendezentrum, workshops
2014-11-09 21:55:16 +00:00
'miniroom' => in_array($room, array('sendezentrum')),
2014-10-01 14:42:22 +00:00
));