Merge pull request #2590 from MediaBrowser/dev

update live tv screens
This commit is contained in:
Luke 2017-04-20 23:47:46 -04:00 committed by GitHub
commit b9fe720e73
2 changed files with 8 additions and 8 deletions

View file

@ -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;
}
}

View file

@ -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;
}
}
}