From fa6f1dd85567d19a4e435237b28da7cdc9c6e564 Mon Sep 17 00:00:00 2001 From: Anton Schubert Date: Fri, 4 Sep 2020 19:45:45 +0200 Subject: add back HD streams to streams api, add poster url to api-v2 --- model/Room.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'model/Room.php') diff --git a/model/Room.php b/model/Room.php index 28c60c6..f1cb933 100644 --- a/model/Room.php +++ b/model/Room.php @@ -51,6 +51,10 @@ class Room return proto().'://'.joinpath([$GLOBALS['CONFIG']['CDN'], 'thumbnail', $this->getStream(), 'thumb.jpeg']); } + public function getPoster() { + return proto().'://'.joinpath([$GLOBALS['CONFIG']['CDN'], 'thumbnail', $this->getStream(), 'poster.jpeg']); + } + public function getLink() { return joinpath([$this->getConference()->getSlug(), $this->getSlug()]).url_params(); } @@ -248,7 +252,7 @@ class Room public function getSelectionNames() { - $selections = array(); + $selections = array('hd'); if($this->hasDash()) $selections[] = 'dash'; -- cgit v1.2.3