extract classes

This commit is contained in:
Luke Pulverenti
2014-10-08 19:31:44 -04:00
parent bebba65d61
commit d091fe0e6e
59 changed files with 655 additions and 422 deletions

View File

@@ -0,0 +1,17 @@
namespace MediaBrowser.Model.Session
{
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; }
public int? Width { get; set; }
public int? Height { get; set; }
public int? AudioChannels { get; set; }
}
}