diff options
author | Anton Schubert | 2017-07-08 00:45:28 +0200 |
---|---|---|
committer | Anton Schubert | 2017-07-08 00:45:28 +0200 |
commit | 329c7a13bd1ed957efc9c14a8b7e5ea75912b2f8 (patch) | |
tree | 13a37555bff545c0ada6260fa5f8db76e6bc1ac2 /model | |
parent | d78310ddf710724395665418bbcbeae60c6e9fed (diff) |
change dash and multiquality-hls paths to existing hls url-scheme
Diffstat (limited to 'model')
-rw-r--r-- | model/Room.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/model/Room.php b/model/Room.php index f5eedbd..c1aeafe 100644 --- a/model/Room.php +++ b/model/Room.php @@ -164,11 +164,11 @@ class Room } public function getHLSPlaylistUrl() { - return proto().'://cdn.c3voc.de/hls/'.rawurlencode($this->getSlug().'_'.$this->getStream()).'/master.m3u8'; + return proto().'://cdn.c3voc.de/hls/'.rawurlencode($this->getSlug().'_'.$this->getStream()).'.m3u8'; } public function getDashManifestUrl() { - return proto().'://cdn.c3voc.de/dash/'.rawurlencode($this->getSlug().'_'.$this->getStream()).'/manifest.mpd'; + return proto().'://cdn.c3voc.de/dash/'.rawurlencode($this->getSlug().'_'.$this->getStream()).'.mpd'; } public function getDashTech() { |