ChannelMediaInfo.cs 1002 B

12345678910111213141516171819202122232425262728293031323334
  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 int? AudioSampleRate { get; set; }
  17. public bool IsRemote { get; set; }
  18. public string VideoProfile { get; set; }
  19. public float? VideoLevel { get; set; }
  20. public float? Framerate { get; set; }
  21. public ChannelMediaInfo()
  22. {
  23. RequiredHttpHeaders = new Dictionary<string, string>();
  24. IsRemote = true;
  25. }
  26. }
  27. }