2014-03-25 05:25:03 +00:00
|
|
|
|
using System.Collections.Generic;
|
2014-03-26 15:06:48 +00:00
|
|
|
|
using System.Xml.Serialization;
|
2016-12-09 07:23:09 +00:00
|
|
|
|
using MediaBrowser.Model.Dlna;
|
2014-03-25 05:25:03 +00:00
|
|
|
|
|
2014-04-01 22:23:07 +00:00
|
|
|
|
namespace MediaBrowser.Model.Dlna
|
2014-03-13 19:08:02 +00:00
|
|
|
|
{
|
|
|
|
|
public class TranscodingProfile
|
|
|
|
|
{
|
2016-12-09 07:23:09 +00:00
|
|
|
|
[XmlAttribute("container")]
|
2014-03-13 19:08:02 +00:00
|
|
|
|
public string Container { get; set; }
|
|
|
|
|
|
2016-12-09 07:23:09 +00:00
|
|
|
|
[XmlAttribute("type")]
|
2014-03-13 19:08:02 +00:00
|
|
|
|
public DlnaProfileType Type { get; set; }
|
|
|
|
|
|
2016-12-09 07:23:09 +00:00
|
|
|
|
[XmlAttribute("videoCodec")]
|
2014-03-13 19:08:02 +00:00
|
|
|
|
public string VideoCodec { get; set; }
|
2014-03-26 15:06:48 +00:00
|
|
|
|
|
2016-12-09 07:23:09 +00:00
|
|
|
|
[XmlAttribute("audioCodec")]
|
2014-03-13 19:08:02 +00:00
|
|
|
|
public string AudioCodec { get; set; }
|
2014-03-18 01:45:41 +00:00
|
|
|
|
|
2016-12-09 07:23:09 +00:00
|
|
|
|
[XmlAttribute("protocol")]
|
2014-03-28 19:58:18 +00:00
|
|
|
|
public string Protocol { get; set; }
|
2016-04-21 04:04:57 +00:00
|
|
|
|
|
2016-12-09 07:23:09 +00:00
|
|
|
|
[XmlAttribute("estimateContentLength")]
|
2014-03-23 00:48:34 +00:00
|
|
|
|
public bool EstimateContentLength { get; set; }
|
2014-03-26 15:06:48 +00:00
|
|
|
|
|
2016-12-09 07:23:09 +00:00
|
|
|
|
[XmlAttribute("enableMpegtsM2TsMode")]
|
2014-03-25 05:25:03 +00:00
|
|
|
|
public bool EnableMpegtsM2TsMode { get; set; }
|
2014-03-26 15:06:48 +00:00
|
|
|
|
|
2016-12-09 07:23:09 +00:00
|
|
|
|
[XmlAttribute("transcodeSeekInfo")]
|
2014-03-23 00:48:34 +00:00
|
|
|
|
public TranscodeSeekInfo TranscodeSeekInfo { get; set; }
|
|
|
|
|
|
2016-12-09 07:23:09 +00:00
|
|
|
|
[XmlAttribute("copyTimestamps")]
|
2016-02-20 06:57:17 +00:00
|
|
|
|
public bool CopyTimestamps { get; set; }
|
|
|
|
|
|
2016-12-09 07:23:09 +00:00
|
|
|
|
[XmlAttribute("context")]
|
2014-07-17 03:17:14 +00:00
|
|
|
|
public EncodingContext Context { get; set; }
|
|
|
|
|
|
2016-12-09 07:23:09 +00:00
|
|
|
|
[XmlAttribute("enableSubtitlesInManifest")]
|
2016-07-13 19:16:51 +00:00
|
|
|
|
public bool EnableSubtitlesInManifest { get; set; }
|
|
|
|
|
|
2016-12-09 07:23:09 +00:00
|
|
|
|
[XmlAttribute("maxAudioChannels")]
|
2016-05-14 05:40:01 +00:00
|
|
|
|
public string MaxAudioChannels { get; set; }
|
|
|
|
|
|
2017-03-17 20:23:34 +00:00
|
|
|
|
[XmlAttribute("minSegments")]
|
|
|
|
|
public int MinSegments { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlAttribute("segmentLength")]
|
|
|
|
|
public int SegmentLength { get; set; }
|
|
|
|
|
|
2017-03-31 19:05:19 +00:00
|
|
|
|
[XmlAttribute("breakOnNonKeyFrames")]
|
|
|
|
|
public bool BreakOnNonKeyFrames { get; set; }
|
|
|
|
|
|
2017-08-19 19:43:35 +00:00
|
|
|
|
public string[] GetAudioCodecs()
|
2014-03-25 05:25:03 +00:00
|
|
|
|
{
|
2017-08-19 19:43:35 +00:00
|
|
|
|
return ContainerProfile.SplitValue(AudioCodec);
|
2014-03-25 05:25:03 +00:00
|
|
|
|
}
|
2014-03-18 01:45:41 +00:00
|
|
|
|
}
|
2014-03-13 19:08:02 +00:00
|
|
|
|
}
|