TranscodingInfo.cs 598 B

12345678910111213141516171819
  1. namespace MediaBrowser.Model.Session
  2. {
  3. public class TranscodingInfo
  4. {
  5. public string AudioCodec { get; set; }
  6. public string VideoCodec { get; set; }
  7. public string Container { get; set; }
  8. public bool IsVideoDirect { get; set; }
  9. public bool IsAudioDirect { get; set; }
  10. public int? Bitrate { get; set; }
  11. public float? Framerate { get; set; }
  12. public double? CompletionPercentage { get; set; }
  13. public int? Width { get; set; }
  14. public int? Height { get; set; }
  15. public int? AudioChannels { get; set; }
  16. }
  17. }