diff options
author | MaZderMind | 2014-11-09 19:43:33 +0100 |
---|---|---|
committer | MaZderMind | 2014-11-09 19:43:33 +0100 |
commit | ed7b993d02eb1210e75eb04d88bdc04634b0891b (patch) | |
tree | 94f371271073e3fb92449533fd755d4ce41c2723 /template | |
parent | b13164aa412fbb36ad8ad771da026c84bf97f37b (diff) |
slide stream (basic form)
Diffstat (limited to '')
-rw-r--r-- | template/assemblies/player/slides.phtml | 48 |
1 files changed, 11 insertions, 37 deletions
diff --git a/template/assemblies/player/slides.phtml b/template/assemblies/player/slides.phtml index f9993c1..f26163a 100644 --- a/template/assemblies/player/slides.phtml +++ b/template/assemblies/player/slides.phtml @@ -1,39 +1,13 @@ -<pre><?=print_r(array( - 'file' => basename(__FILE__), - 'room' => $room, - 'language' => $language, - 'format' => $format -), true)?></pre> +<img + width="1024" + height="576" -<?/* -<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" - /> + data-src="<?=h(link_stream('slide', $room, null, $translated))?>" - <object - data="static/flashmediaelement.swf" - type="application/x-shockwave-flash" - width="<?=h($width)?>" - height="<?=h($height)?>" - > - <param name="allowFullScreen" value="true"> - </object> -</video> -*/?> + alt="<?=h($title)?>" + class="slide template" +/> + +<div class="slide-audio"> + <? include('audio.phtml') ?> +</div> |