17 lines
502 B
C#
17 lines
502 B
C#
|
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; }
|
||
|
}
|
||
|
}
|