aboutsummaryrefslogtreecommitdiff
path: root/template
diff options
context:
space:
mode:
Diffstat (limited to 'template')
-rw-r--r--template/player-video.phtml30
-rw-r--r--template/player.phtml2
2 files changed, 32 insertions, 0 deletions
diff --git a/template/player-video.phtml b/template/player-video.phtml
new file mode 100644
index 0000000..824a776
--- /dev/null
+++ b/template/player-video.phtml
@@ -0,0 +1,30 @@
+<video
+ autoplay="autoplay"
+ controls="controls"
+ id="video-tag"
+ preload="auto"
+ width="<?=h($width)?>"
+ height="<?=h($height)?>"
+>
+ <source
+ data-plugin-type="flash"
+ src="rtmp://rtmp.streaming.media.ccc.de:1935/stream/<?=h($room)?>_<?=h($language)?>_<?=h($format)?>"
+ title="h.H264 (RTMP)"
+ type="video/rtmp"
+ />
+ <source
+ data-plugin-type="native"
+ src="http://hls.streaming.media.ccc.de/hls/<?=h($room)?>_<?=h($language)?>_<?=h($format)?>.m3u8"
+ title="h.264 (HLS)"
+ type="application/vnd.apple.mpegURL"
+ />
+
+ <object
+ data="static/flashmediaelement.swf"
+ type="application/x-shockwave-flash"
+ width="<?=h($width)?>"
+ height="<?=h($height)?>"
+ >
+ <param name="allowFullScreen" value="true">
+ </object>
+</video>
diff --git a/template/player.phtml b/template/player.phtml
new file mode 100644
index 0000000..f663213
--- /dev/null
+++ b/template/player.phtml
@@ -0,0 +1,2 @@
+A Player:<br />
+<? include("player-$playertype.phtml") ?> \ No newline at end of file