TunerHostInfo.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. namespace MediaBrowser.Model.LiveTv
  4. {
  5. public class TunerHostInfo
  6. {
  7. public TunerHostInfo()
  8. {
  9. AllowHWTranscoding = true;
  10. IgnoreDts = true;
  11. AllowStreamSharing = true;
  12. AllowFmp4TranscodingContainer = false;
  13. FallbackMaxStreamingBitrate = 30000000;
  14. }
  15. public string Id { get; set; }
  16. public string Url { get; set; }
  17. public string Type { get; set; }
  18. public string DeviceId { get; set; }
  19. public string FriendlyName { get; set; }
  20. public bool ImportFavoritesOnly { get; set; }
  21. public bool AllowHWTranscoding { get; set; }
  22. public bool AllowFmp4TranscodingContainer { get; set; }
  23. public bool AllowStreamSharing { get; set; }
  24. public int FallbackMaxStreamingBitrate { get; set; }
  25. public bool EnableStreamLooping { get; set; }
  26. public string Source { get; set; }
  27. public int TunerCount { get; set; }
  28. public string UserAgent { get; set; }
  29. public bool IgnoreDts { get; set; }
  30. }
  31. }