aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/TranscodingProfile.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-03-17 16:23:34 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-03-17 16:23:34 -0400
commitc9ee7633caacb548fd54c33c7c9df1be29b71d29 (patch)
tree5d820adf0ec9a243a9c497af784a46adbebb5fb1 /MediaBrowser.Model/Dlna/TranscodingProfile.cs
parentdb904832388278a36d5f1b1e7c1609931694e9e7 (diff)
embed recording button into video player
Diffstat (limited to 'MediaBrowser.Model/Dlna/TranscodingProfile.cs')
-rw-r--r--MediaBrowser.Model/Dlna/TranscodingProfile.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Dlna/TranscodingProfile.cs b/MediaBrowser.Model/Dlna/TranscodingProfile.cs
index 76f2332f2..350556e90 100644
--- a/MediaBrowser.Model/Dlna/TranscodingProfile.cs
+++ b/MediaBrowser.Model/Dlna/TranscodingProfile.cs
@@ -42,6 +42,12 @@ namespace MediaBrowser.Model.Dlna
[XmlAttribute("maxAudioChannels")]
public string MaxAudioChannels { get; set; }
+ [XmlAttribute("minSegments")]
+ public int MinSegments { get; set; }
+
+ [XmlAttribute("segmentLength")]
+ public int SegmentLength { get; set; }
+
public List<string> GetAudioCodecs()
{
List<string> list = new List<string>();