diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-04-20 23:47:46 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-04-20 23:47:46 -0400 |
| commit | b9fe720e736abacc57ffb846e4ce6644bc110f61 (patch) | |
| tree | f029e380a0867d6e8db7895e63d9a69e0cfd426f | |
| parent | 389baf67b68f10052f5cd870a8a9e59adcbdadeb (diff) | |
| parent | 4269190ca310a10d97f24e73cf59423b534fe5a4 (diff) | |
Merge pull request #2590 from MediaBrowser/dev
update live tv screens
| -rw-r--r-- | Emby.Server.Implementations/LiveTv/LiveStreamHelper.cs | 8 | ||||
| -rw-r--r-- | Emby.Server.Implementations/LiveTv/LiveTvMediaSourceProvider.cs | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/Emby.Server.Implementations/LiveTv/LiveStreamHelper.cs b/Emby.Server.Implementations/LiveTv/LiveStreamHelper.cs index 925dec71c..d56ddc57d 100644 --- a/Emby.Server.Implementations/LiveTv/LiveStreamHelper.cs +++ b/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; } } diff --git a/Emby.Server.Implementations/LiveTv/LiveTvMediaSourceProvider.cs b/Emby.Server.Implementations/LiveTv/LiveTvMediaSourceProvider.cs index 220c503d1..0329ea606 100644 --- a/Emby.Server.Implementations/LiveTv/LiveTvMediaSourceProvider.cs +++ b/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; } } } |
