streaming-website/template/relive-player.phtml

55 lines
1.6 KiB
PHTML
Raw Normal View History

2015-03-02 15:38:50 +00:00
<div class="container">
<div class="row headline">
<div class="col-xs-12">
<h1><?=h($title)?></h1>
</div>
</div>
<? if($talk['status'] == 'released'): ?>
<div class="row">
2015-07-13 12:27:38 +00:00
<div class="col-xs-12">
<div class="alert alert-success">
<h3>Released</h3>
2015-07-13 12:22:39 +00:00
<p>This talk is already released! Take a look at <a href="<?=h($talk['release_url'])?>"><?=h(parse_url($talk['release_url'], PHP_URL_HOST))?></a>.</p>
</div>
</div>
</div>
<? endif ?>
2015-07-13 12:27:20 +00:00
<? if(isset($talk['mp4'])): ?>
<div class="row">
2015-07-13 12:27:38 +00:00
<div class="col-xs-12">
2015-07-13 12:27:20 +00:00
<div class="alert alert-success">
<h3>Download</h3>
<p>Click here to <a href="<?=h(forceproto($talk['mp4']))?>">Download</a> this Relive recording. Beware! This is an unprocessed streamdump a final release will follow soon.</p>
2015-07-13 12:27:20 +00:00
</div>
</div>
</div>
<? endif ?>
2015-03-02 15:38:50 +00:00
<div class="row">
<div class="col-xs-12">
<div class="player-wrap">
<? include("$assemblies/player/relive.phtml") ?>
</div>
</div>
</div>
2014-12-27 19:56:20 +00:00
2015-03-02 15:38:50 +00:00
<div class="row">
<div class="col-xs-12 col-md-8 col-md-offset-2">
<div class="well">
<div class="desktop-player-hint">
<h3>Sorry about the Flash</h3>
<p>
As there is no desktop player which supports time-shifting, we chose embed a Flash player here which does.
If you still want to watch with a desktop player, use this URL: <a href="<?=h(forceproto($talk['playlist']))?>"><?=h(forceproto($talk['playlist']))?></a>
</p>
2015-09-10 20:39:58 +00:00
<p>
Note: Downloading this file is useless because of the way HLS works. You need to play the URL from your player.
<p>
</div>
2015-03-02 15:38:50 +00:00
</div>
</div>
2014-12-27 19:56:20 +00:00
</div>
</div>