jellyfin/MediaBrowser.Model/Dlna/SubtitleProfile.cs

42 lines
1.1 KiB
C#
Raw Normal View History

2015-03-28 21:22:27 +01:00
using MediaBrowser.Model.Extensions;
using System.Collections.Generic;
using System.Xml.Serialization;
2014-07-17 05:17:14 +02:00
namespace MediaBrowser.Model.Dlna
{
public class SubtitleProfile
{
[XmlAttribute("format")]
2014-07-17 05:17:14 +02:00
public string Format { get; set; }
[XmlAttribute("method")]
public SubtitleDeliveryMethod Method { get; set; }
2014-08-07 04:51:09 +02:00
[XmlAttribute("didlMode")]
public string DidlMode { get; set; }
2015-03-28 21:22:27 +01:00
[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);
}
2014-07-17 05:17:14 +02:00
}
}