25 lines
731 B
C#
25 lines
731 B
C#
|
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))
|
|||
|
{
|
|||
|
profileBitrate = Convert.ToInt32(profileBitrate.Value * .75);
|
|||
|
}
|
|||
|
else if (string.Equals(quality, "low", StringComparison.OrdinalIgnoreCase))
|
|||
|
{
|
|||
|
profileBitrate = Convert.ToInt32(profileBitrate.Value*.5);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
return profileBitrate;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|