From d83d5df9c267038938383451f05248493a1c59eb Mon Sep 17 00:00:00 2001 From: Anton Schubert Date: Thu, 21 Dec 2017 12:21:51 +0100 Subject: fix dash manifest url --- model/Room.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'model/Room.php') diff --git a/model/Room.php b/model/Room.php index 24d87cb..017a2ca 100644 --- a/model/Room.php +++ b/model/Room.php @@ -168,7 +168,7 @@ class Room } public function getDashManifestUrl() { - return proto().'://live.dus.c3voc.de/dash/'.rawurlencode($this->getSlug().'_'.$this->getStream()).'.mpd'; + return proto().'://cdn.c3voc.de/dash/'.rawurlencode($this->getStream()).'/manifest.mpd'; } public function getDashTech() { -- cgit v1.2.3 From 26158ebc51e19780a69b35f15256c80c836ef27e Mon Sep 17 00:00:00 2001 From: Anton Schubert Date: Thu, 21 Dec 2017 12:47:16 +0100 Subject: fix hls playlist url --- model/Room.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'model/Room.php') diff --git a/model/Room.php b/model/Room.php index 017a2ca..a436c93 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->getSlug().'_'.$this->getStream()).'.m3u8'; + return proto().'://cdn.c3voc.de/hls/'.rawurlencode($this->getStream()).'_native.m3u8'; } public function getDashManifestUrl() { -- cgit v1.2.3 From b8aa2f297636999adc301f78bf0a8641df6aa892 Mon Sep 17 00:00:00 2001 From: Anton Schubert Date: Wed, 27 Dec 2017 18:24:51 +0100 Subject: fix hls playlist url in adaptive player --- model/Room.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'model/Room.php') 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() { -- cgit v1.2.3