aboutsummaryrefslogtreecommitdiff
path: root/template
diff options
context:
space:
mode:
authorMaZderMind2014-10-02 16:19:15 +0200
committerMaZderMind2014-10-02 16:19:15 +0200
commitb5f7004080f2ddf89e672aaa8ddb197703f8cf74 (patch)
tree7cb536a6c6d5a5d05c9698942f01c029aa3785de /template
parent7d50beb6ddce3f99de2c015d00c9528ce52577a1 (diff)
player setup
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