jellyfin-server/MediaBrowser.Model/Session/TranscodingInfo.cs

19 lines
598 B
C#
Raw Normal View History

2014-10-08 23:31:44 +00:00
namespace MediaBrowser.Model.Session
{
public class TranscodingInfo
{
public string AudioCodec { get; set; }
public string VideoCodec { get; set; }
public string Container { get; set; }
2014-12-19 04:20:07 +00:00
public bool IsVideoDirect { get; set; }
public bool IsAudioDirect { get; set; }
2014-10-08 23:31:44 +00:00
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; }
}
}