소스 검색

update live tv screens

Luke Pulverenti 8 년 전
부모
커밋
4269190ca3
2개의 변경된 파일8개의 추가작업 그리고 8개의 파일을 삭제
  1. 4 4
      Emby.Server.Implementations/LiveTv/LiveStreamHelper.cs
  2. 4 4
      Emby.Server.Implementations/LiveTv/LiveTvMediaSourceProvider.cs

+ 4 - 4
Emby.Server.Implementations/LiveTv/LiveStreamHelper.cs

@@ -80,22 +80,22 @@ namespace Emby.Server.Implementations.LiveTv
 
                     if (width >= 3000)
                     {
-                        videoStream.BitRate = 25000000;
+                        videoStream.BitRate = 30000000;
                     }
 
                     else if (width >= 1900)
                     {
-                        videoStream.BitRate = 15000000;
+                        videoStream.BitRate = 20000000;
                     }
 
                     else if (width >= 1200)
                     {
-                        videoStream.BitRate = 4000000;
+                        videoStream.BitRate = 8000000;
                     }
 
                     else if (width >= 700)
                     {
-                        videoStream.BitRate = 1500000;
+                        videoStream.BitRate = 2000000;
                     }
                 }
 

+ 4 - 4
Emby.Server.Implementations/LiveTv/LiveTvMediaSourceProvider.cs

@@ -185,22 +185,22 @@ namespace Emby.Server.Implementations.LiveTv
 
                     if (width >= 3000)
                     {
-                        videoStream.BitRate = 25000000;
+                        videoStream.BitRate = 30000000;
                     }
 
                     else if (width >= 1900)
                     {
-                        videoStream.BitRate = 15000000;
+                        videoStream.BitRate = 20000000;
                     }
 
                     else if (width >= 1200)
                     {
-                        videoStream.BitRate = 4000000;
+                        videoStream.BitRate = 8000000;
                     }
 
                     else if (width >= 700)
                     {
-                        videoStream.BitRate = 1500000;
+                        videoStream.BitRate = 2000000;
                     }
                 }
             }