You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
757 B
30 lines
757 B
namespace MediaBrowser.Model.MediaInfo
|
|
{
|
|
public class AudioCodec
|
|
{
|
|
public const string AAC = "aac";
|
|
public const string MP3 = "mp3";
|
|
public const string AC3 = "ac3";
|
|
|
|
public static string GetFriendlyName(string codec)
|
|
{
|
|
if (string.IsNullOrEmpty(codec))
|
|
{
|
|
return string.Empty;
|
|
}
|
|
|
|
switch (codec.ToLowerInvariant())
|
|
{
|
|
case "ac3":
|
|
return "Dolby Digital";
|
|
case "eac3":
|
|
return "Dolby Digital+";
|
|
case "dca":
|
|
return "DTS";
|
|
default:
|
|
return codec.ToUpperInvariant();
|
|
}
|
|
}
|
|
}
|
|
}
|