aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/LiveTv/LiveTvMediaSourceProvider.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-04-20 23:47:17 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-04-20 23:47:17 -0400
commit4269190ca310a10d97f24e73cf59423b534fe5a4 (patch)
treef029e380a0867d6e8db7895e63d9a69e0cfd426f /Emby.Server.Implementations/LiveTv/LiveTvMediaSourceProvider.cs
parent7ea3719a2dfbdbe18a6b83ea5532f061c238cbc4 (diff)
update live tv screens
Diffstat (limited to 'Emby.Server.Implementations/LiveTv/LiveTvMediaSourceProvider.cs')
-rw-r--r--Emby.Server.Implementations/LiveTv/LiveTvMediaSourceProvider.cs8
1 files changed, 4 insertions, 4 deletions
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;
}
}
}