diff options
author | MaZderMind | 2016-12-22 20:25:35 +0100 |
---|---|---|
committer | MaZderMind | 2016-12-22 20:25:35 +0100 |
commit | d00fda4353e943c249354edf6e11cccfdc089d83 (patch) | |
tree | d8ab8848b2f08f5289d117b349de50b824438a4f /model | |
parent | efdae0713ec5890aab5358747ffc304d97ab058b (diff) |
working example of minimal dash player
Diffstat (limited to 'model')
-rw-r--r-- | model/Room.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/model/Room.php b/model/Room.php index b20a0f0..8ee4ce2 100644 --- a/model/Room.php +++ b/model/Room.php @@ -163,6 +163,10 @@ class Room return $this->getConference()->get('ROOMS.'.$this->getSlug().'.DASH'); } + public function getDashManifestUrl() { + return proto().'://cdn.c3voc.de/dash/'.rawurlencode($this->getStream()).'/manifest.mpd'; + } + public function hasTranslation() { return $this->getConference()->get('ROOMS.'.$this->getSlug().'.TRANSLATION'); } |