aboutsummaryrefslogtreecommitdiff
path: root/formats.php
diff options
context:
space:
mode:
Diffstat (limited to 'formats.php')
-rw-r--r--formats.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/formats.php b/formats.php
new file mode 100644
index 0000000..1908680
--- /dev/null
+++ b/formats.php
@@ -0,0 +1,24 @@
+<?php
+
+require_once('lib/PhpTemplate.php');
+require_once('lib/helper.php');
+require_once('config.php');
+
+$room = $_GET['room'];
+
+$tpl = new PhpTemplate('template/page.phtml');
+echo $tpl->render(array(
+ 'page' => 'rooms',
+ 'baseurl' => baseurl(),
+ 'title' => 'Stream-Formats',
+ 'subtitle' => ucfirst($room),
+
+ 'room' => $room,
+ 'formats' => array(
+ 'hd' => 'FullHD',
+ 'hq' => 'High Quality',
+ 'lq' => 'Low Quality',
+ 'audio' => 'Audio-Only',
+ 'slides' => 'Slide-Images + Audio',
+ ),
+));