mirror of
https://github.com/voc/streaming-website
synced 2024-11-10 14:44:21 +00:00
16 lines
333 B
PHP
16 lines
333 B
PHP
<?php
|
|
|
|
$relive = $conference->getRelive();
|
|
if(!$relive->isEnabled())
|
|
throw new NotFoundException('Internal Relive is disabled');
|
|
|
|
$talk = $relive->getTalk(intval($_GET['id']));
|
|
|
|
echo $tpl->render(array(
|
|
'page' => 'relive-player',
|
|
'title' => 'Relive: ' . $talk['title'],
|
|
'talk' => $talk,
|
|
|
|
'width' => 1920,
|
|
'height' => 1080,
|
|
));
|