diff options
author | MaZderMind | 2016-12-29 03:55:34 +0100 |
---|---|---|
committer | MaZderMind | 2016-12-29 03:55:34 +0100 |
commit | 50c507d3743a93930ce589458ef246f85e28bbb2 (patch) | |
tree | 2e12353e6289f0c320123ef07d0b058424805cf8 | |
parent | fbb304af5aa8655ff48c5b9c867509dd9f5b1de5 (diff) |
repair tech strings
-rw-r--r-- | model/Stream.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/model/Stream.php b/model/Stream.php index a51227e..daed17f 100644 --- a/model/Stream.php +++ b/model/Stream.php @@ -134,10 +134,10 @@ class Stream { case 'webm': if($this->getSelection() == 'hd') - return '1920x1080, VP8+Vorbis in WebM, 2.8 MBit/s'; + return '1920x1080, VP8+Vorbis in WebM, 3.5 MBit/s'; else if($this->getSelection() == 'sd') - return '1024x576, VP8+Vorbis in WebM, 800 kBit/s'; + return '1024x576, VP8+Vorbis in WebM, 1 MBit/s'; case 'hls': if($this->getSelection() == 'hd') @@ -166,10 +166,10 @@ class Stream switch($proto) { case 'webm': - return '1024x576, VP8+Vorbis in WebM, XXX kBit/s'; + return '1024x576, VP8+Vorbis in WebM, 400 kBit/s'; case 'hls': - return '1024x576, h264+AAC im MPEG-TS-Container via HTTP, XXX kBit/s'; + return '1024x576, h264+AAC im MPEG-TS-Container via HTTP, 400 kBit/s'; } return null; |