diff options
author | Anton Schubert | 2017-12-27 18:24:51 +0100 |
---|---|---|
committer | MaZderMind | 2018-01-24 23:35:50 +0100 |
commit | b8aa2f297636999adc301f78bf0a8641df6aa892 (patch) | |
tree | 08f8e2024ff9981f07a5e3668fb82c4570837edc /model/Room.php | |
parent | 4996b0dbe9d984f15f4eaed735e9660aae1fe8e7 (diff) |
fix hls playlist url in adaptive player
Diffstat (limited to '')
-rw-r--r-- | model/Room.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/model/Room.php b/model/Room.php index a436c93..9ec6ebe 100644 --- a/model/Room.php +++ b/model/Room.php @@ -164,7 +164,7 @@ class Room } public function getHLSPlaylistUrl() { - return proto().'://cdn.c3voc.de/hls/'.rawurlencode($this->getStream()).'_native.m3u8'; + return proto().'://cdn.c3voc.de/hls/'.rawurlencode($this->getStream()).'_native_hd.m3u8'; } public function getDashManifestUrl() { |