mirror of
https://github.com/voc/streaming-website
synced 2024-11-10 14:44:21 +00:00
13 lines
239 B
PHP
13 lines
239 B
PHP
<?php
|
|
|
|
$relive = $conference->getRelive();
|
|
$talk = $relive->getTalk(intval($_GET['id']));
|
|
|
|
echo $tpl->render(array(
|
|
'page' => 'relive-player-netcut',
|
|
'title' => $talk['title'],
|
|
'talk' => $talk,
|
|
|
|
'width' => 1920,
|
|
'height' => 1080,
|
|
));
|