diff options
author | Anton Schubert | 2017-05-28 03:37:40 +0200 |
---|---|---|
committer | Anton Schubert | 2017-05-28 03:37:40 +0200 |
commit | a1cc81790f8a04108ff56739ba284d600c9fd4e9 (patch) | |
tree | 95612f6f6161a97f2819fcf5580ce4c926de2596 /model | |
parent | d823c8614fff8c7210963465760a8f96fd42e4df (diff) |
update dash-player to simultaneous dash/hls player
Diffstat (limited to 'model')
-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..f5eedbd 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()).'/master.m3u8'; + } + public function getDashManifestUrl() { - return proto().'://dekan.cch.c3voc.de/dash/'.rawurlencode($this->getStream()).'/manifest.mpd'; + return proto().'://cdn.c3voc.de/dash/'.rawurlencode($this->getSlug().'_'.$this->getStream()).'/manifest.mpd'; } public function getDashTech() { |