aboutsummaryrefslogtreecommitdiff
path: root/model/Stream.php
diff options
context:
space:
mode:
authorAnton Schubert2020-05-02 22:34:48 +0200
committerAnton Schubert2020-05-02 22:34:48 +0200
commit6ca102c77d0d2e3e5da962dbf69596af866d039f (patch)
tree21b39a6eb6db9197c835b96e8f703f76a27f2f01 /model/Stream.php
parentaec18c42ef72bf93dc4e931dbca4ade19db5d9fb (diff)
remove legacy video tab
Diffstat (limited to 'model/Stream.php')
-rw-r--r--model/Stream.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/model/Stream.php b/model/Stream.php
index e260ef9..5f803b6 100644
--- a/model/Stream.php
+++ b/model/Stream.php
@@ -150,10 +150,10 @@ class Stream
{
case 'webm':
if($this->getSelection() == 'hd')
- return '1920x1080, VP8+Vorbis in WebM, 3.5 MBit/s';
+ return '1920x1080, VP9+Opus in WebM, 3.5 MBit/s';
else if($this->getSelection() == 'sd')
- return '1024x576, VP8+Vorbis in WebM, 1 MBit/s';
+ return '1024x576, VP9+Opus in WebM, 1 MBit/s';
case 'hls':
if($this->getSelection() == 'hd')
@@ -161,6 +161,9 @@ class Stream
else if($this->getSelection() == 'sd')
return '1024x576, h264+AAC im MPEG-TS-Container via HTTP, 800 kBit/s';
+
+ case 'dash':
+ return 'VP9+Opus mit WebM-Segmenten';
}
return null;