aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Session/PlayerStateInfo.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-06-05 20:39:02 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-06-05 20:39:02 -0400
commitf7cd7182d55779b623c8da34bb3ca3b524194830 (patch)
treeeeb2ff3107df9a2eeea4630d2c6a09339a354336 /MediaBrowser.Model/Session/PlayerStateInfo.cs
parent7049ad66f47f4de3a62e0cc10ca8911f1dc454a7 (diff)
display additional transcoding info in dashboard
Diffstat (limited to 'MediaBrowser.Model/Session/PlayerStateInfo.cs')
-rw-r--r--MediaBrowser.Model/Session/PlayerStateInfo.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Session/PlayerStateInfo.cs b/MediaBrowser.Model/Session/PlayerStateInfo.cs
index c9afef8e0..24f9ef3e0 100644
--- a/MediaBrowser.Model/Session/PlayerStateInfo.cs
+++ b/MediaBrowser.Model/Session/PlayerStateInfo.cs
@@ -56,4 +56,15 @@
/// <value>The play method.</value>
public PlayMethod? PlayMethod { get; set; }
}
+
+ public class TranscodingInfo
+ {
+ public string AudioCodec { get; set; }
+ public string VideoCodec { get; set; }
+ public string Container { get; set; }
+ public int? Bitrate { get; set; }
+
+ public float? Framerate { get; set; }
+ public double? CompletionPercentage { get; set; }
+ }
} \ No newline at end of file