jellyfin/MediaBrowser.Controller/Dlna/DirectPlayProfile.cs

44 lines
1.1 KiB
C#
Raw Normal View History

2014-03-22 20:37:15 +01:00
using System.Collections.Generic;
using System.Linq;
2014-03-26 16:06:48 +01:00
using System.Xml.Serialization;
2014-03-15 05:14:07 +01:00
2014-03-13 20:08:02 +01:00
namespace MediaBrowser.Controller.Dlna
{
public class DirectPlayProfile
{
2014-03-26 16:06:48 +01:00
[XmlAttribute("container")]
2014-03-23 07:07:43 +01:00
public string Container { get; set; }
2014-03-26 16:06:48 +01:00
[XmlAttribute("audioCodec")]
public string AudioCodec { get; set; }
2014-03-26 16:06:48 +01:00
[XmlAttribute("videoCodec")]
public string VideoCodec { get; set; }
2014-03-15 05:14:07 +01:00
2014-03-26 16:06:48 +01:00
[XmlAttribute("type")]
2014-03-13 20:08:02 +01:00
public DlnaProfileType Type { get; set; }
2014-03-23 07:07:43 +01:00
public List<string> GetContainers()
{
return (Container ?? string.Empty).Split(',').Where(i => !string.IsNullOrWhiteSpace(i)).ToList();
2014-03-13 20:08:02 +01:00
}
public List<string> GetAudioCodecs()
{
return (AudioCodec ?? string.Empty).Split(',').Where(i => !string.IsNullOrWhiteSpace(i)).ToList();
}
public List<string> GetVideoCodecs()
{
return (VideoCodec ?? string.Empty).Split(',').Where(i => !string.IsNullOrWhiteSpace(i)).ToList();
}
2014-03-13 20:08:02 +01:00
}
public enum DlnaProfileType
{
Audio = 0,
Video = 1,
Photo = 2
2014-03-13 20:08:02 +01:00
}
}