ChannelMediaInfo.cs 809 B

1234567891011121314151617181920212223242526272829
  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 bool IsRemote { get; set; }
  17. public ChannelMediaInfo()
  18. {
  19. RequiredHttpHeaders = new Dictionary<string, string>();
  20. IsRemote = true;
  21. }
  22. }
  23. }