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.
42 lines
1.1 KiB
42 lines
1.1 KiB
using MediaBrowser.Model.Extensions;
|
|
using System.Collections.Generic;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace MediaBrowser.Model.Dlna
|
|
{
|
|
public class SubtitleProfile
|
|
{
|
|
[XmlAttribute("format")]
|
|
public string Format { get; set; }
|
|
|
|
[XmlAttribute("method")]
|
|
public SubtitleDeliveryMethod Method { get; set; }
|
|
|
|
[XmlAttribute("didlMode")]
|
|
public string DidlMode { get; set; }
|
|
|
|
[XmlAttribute("language")]
|
|
public string Language { get; set; }
|
|
|
|
public List<string> GetLanguages()
|
|
{
|
|
List<string> list = new List<string>();
|
|
foreach (string i in (Language ?? string.Empty).Split(','))
|
|
{
|
|
if (!string.IsNullOrEmpty(i)) list.Add(i);
|
|
}
|
|
return list;
|
|
}
|
|
|
|
public bool SupportsLanguage(string language)
|
|
{
|
|
if (string.IsNullOrEmpty(language))
|
|
{
|
|
language = "und";
|
|
}
|
|
|
|
List<string> languages = GetLanguages();
|
|
return languages.Count == 0 || ListHelper.ContainsIgnoreCase(languages, language);
|
|
}
|
|
}
|
|
} |