aboutsummaryrefslogtreecommitdiff
path: root/template/assemblies/player
diff options
context:
space:
mode:
authorAnton Schubert2020-05-02 22:34:48 +0200
committerAnton Schubert2020-05-02 22:34:48 +0200
commit6ca102c77d0d2e3e5da962dbf69596af866d039f (patch)
tree21b39a6eb6db9197c835b96e8f703f76a27f2f01 /template/assemblies/player
parentaec18c42ef72bf93dc4e931dbca4ade19db5d9fb (diff)
remove legacy video tab
Diffstat (limited to 'template/assemblies/player')
-rw-r--r--template/assemblies/player/video.phtml30
1 files changed, 0 insertions, 30 deletions
diff --git a/template/assemblies/player/video.phtml b/template/assemblies/player/video.phtml
deleted file mode 100644
index 3eae170..0000000
--- a/template/assemblies/player/video.phtml
+++ /dev/null
@@ -1,30 +0,0 @@
-<div
- style="max-width: <?=h($stream->getVideoWidth())?>px; max-height: <?=h($stream->getVideoHeight())?>px;"
- class="video-wrap <? if($room->hasSubtitles()): ?>has-subtitles<? endif ?>"
- data-subtitles-room-id="<?=h($room->getSubtitlesRoomId())?>"
->
- <video
- <? if(!isset($autoplay) || $autoplay == true): ?>
- autoplay="autoplay"
- <? endif ?>
- preload="auto"
- width="<?=h($stream->getVideoWidth())?>"
- height="<?=h($stream->getVideoHeight())?>"
- poster="<?=h($stream->getPoster())?>"
- style="width: 100%; height: 100%;"
- class="mejs"
- >
- <source
- data-plugin-type="native"
- src="<?=h($stream->getVideoUrl('webm'))?>"
- title="WebM (Icecast)"
- type="video/webm"
- />
- <source
- data-plugin-type="native"
- src="<?=h($stream->getVideoUrl('hls'))?>"
- title="h.264 (HLS)"
- type="application/vnd.apple.mpegURL"
- />
- </video>
-</div>