2015-03-15 17:50:47 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Server.Implementations.Sync
|
|
|
|
|
{
|
|
|
|
|
public class SyncHelper
|
|
|
|
|
{
|
|
|
|
|
public static int? AdjustBitrate(int? profileBitrate, string quality)
|
|
|
|
|
{
|
|
|
|
|
if (profileBitrate.HasValue)
|
|
|
|
|
{
|
|
|
|
|
if (string.Equals(quality, "medium", StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
{
|
2016-03-02 04:46:10 +00:00
|
|
|
|
profileBitrate = Math.Min(profileBitrate.Value, 4000000);
|
2015-03-15 17:50:47 +00:00
|
|
|
|
}
|
|
|
|
|
else if (string.Equals(quality, "low", StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
{
|
2016-03-02 04:46:10 +00:00
|
|
|
|
profileBitrate = Math.Min(profileBitrate.Value, 1500000);
|
2015-03-15 17:50:47 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return profileBitrate;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|