TunerHostInfo.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. ReadAtNativeFramerate = false;
  12. AllowStreamSharing = true;
  13. AllowFmp4TranscodingContainer = false;
  14. FallbackMaxStreamingBitrate = 30000000;
  15. }
  16. public string Id { get; set; }
  17. public string Url { get; set; }
  18. public string Type { get; set; }
  19. public string DeviceId { get; set; }
  20. public string FriendlyName { get; set; }
  21. public bool ImportFavoritesOnly { get; set; }
  22. public bool AllowHWTranscoding { get; set; }
  23. public bool AllowFmp4TranscodingContainer { get; set; }
  24. public bool AllowStreamSharing { get; set; }
  25. public int FallbackMaxStreamingBitrate { get; set; }
  26. public bool EnableStreamLooping { get; set; }
  27. public string Source { get; set; }
  28. public int TunerCount { get; set; }
  29. public string UserAgent { get; set; }
  30. public bool IgnoreDts { get; set; }
  31. public bool ReadAtNativeFramerate { get; set; }
  32. }
  33. }