jellyfin/MediaBrowser.Model/Dlna/TranscodingProfile.cs

46 lines
1.3 KiB
C#
Raw Normal View History

2014-03-24 22:25:03 -07:00
using System.Collections.Generic;
2014-03-26 08:06:48 -07:00
using System.Xml.Serialization;
2014-03-24 22:25:03 -07:00
2014-04-01 15:23:07 -07:00
namespace MediaBrowser.Model.Dlna
2014-03-13 12:08:02 -07:00
{
public class TranscodingProfile
{
2014-03-26 08:06:48 -07:00
[XmlAttribute("container")]
2014-03-13 12:08:02 -07:00
public string Container { get; set; }
2014-03-26 08:06:48 -07:00
[XmlAttribute("type")]
2014-03-13 12:08:02 -07:00
public DlnaProfileType Type { get; set; }
2014-03-26 08:06:48 -07:00
[XmlAttribute("videoCodec")]
2014-03-13 12:08:02 -07:00
public string VideoCodec { get; set; }
2014-03-26 08:06:48 -07:00
[XmlAttribute("audioCodec")]
2014-03-13 12:08:02 -07:00
public string AudioCodec { get; set; }
2014-03-17 18:45:41 -07:00
2014-03-28 12:58:18 -07:00
[XmlAttribute("protocol")]
public string Protocol { get; set; }
2014-03-26 08:06:48 -07:00
[XmlAttribute("estimateContentLength")]
2014-03-22 17:48:34 -07:00
public bool EstimateContentLength { get; set; }
2014-03-26 08:06:48 -07:00
[XmlAttribute("enableMpegtsM2TsMode")]
2014-03-24 22:25:03 -07:00
public bool EnableMpegtsM2TsMode { get; set; }
2014-03-26 08:06:48 -07:00
[XmlAttribute("transcodeSeekInfo")]
2014-03-22 17:48:34 -07:00
public TranscodeSeekInfo TranscodeSeekInfo { get; set; }
2014-07-16 20:17:14 -07:00
[XmlAttribute("context")]
public EncodingContext Context { get; set; }
2014-03-24 22:25:03 -07:00
public List<string> GetAudioCodecs()
{
2014-05-08 14:23:24 -07:00
List<string> list = new List<string>();
foreach (string i in (AudioCodec ?? string.Empty).Split(','))
{
if (!string.IsNullOrEmpty(i)) list.Add(i);
}
return list;
2014-03-24 22:25:03 -07:00
}
2014-03-17 18:45:41 -07:00
}
2014-03-13 12:08:02 -07:00
}