ChannelMediaInfo.cs 736 B

1234567891011121314151617181920212223242526
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Controller.Channels
  3. {
  4. public class ChannelMediaInfo
  5. {
  6. public string Path { get; set; }
  7. public Dictionary<string, string> RequiredHttpHeaders { get; set; }
  8. public string Container { get; set; }
  9. public string AudioCodec { get; set; }
  10. public string VideoCodec { get; set; }
  11. public int? AudioBitrate { get; set; }
  12. public int? VideoBitrate { get; set; }
  13. public int? Width { get; set; }
  14. public int? Height { get; set; }
  15. public int? AudioChannels { get; set; }
  16. public ChannelMediaInfo()
  17. {
  18. RequiredHttpHeaders = new Dictionary<string, string>();
  19. }
  20. }
  21. }