diff options
Diffstat (limited to '')
-rw-r--r-- | model/Room.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/model/Room.php b/model/Room.php index ecab17e..4b251cd 100644 --- a/model/Room.php +++ b/model/Room.php @@ -163,8 +163,12 @@ class Room return $this->getConference()->get('ROOMS.'.$this->getSlug().'.DASH'); } + public function getHLSPlaylistUrl() { + return proto().'://cdn.c3voc.de/hls/'.rawurlencode($this->getSlug().'_'.$this->getStream()).'.m3u8'; + } + public function getDashManifestUrl() { - return proto().'://dekan.cch.c3voc.de/dash/'.rawurlencode($this->getStream()).'/manifest.mpd'; + return proto().'://live.dus.c3voc.de/dash/'.rawurlencode($this->getSlug().'_'.$this->getStream()).'.mpd'; } public function getDashTech() { |