| | | 1 | | #nullable disable |
| | | 2 | | #pragma warning disable CS1591 |
| | | 3 | | |
| | | 4 | | namespace MediaBrowser.Model.LiveTv |
| | | 5 | | { |
| | | 6 | | public class TunerHostInfo |
| | | 7 | | { |
| | | 8 | | public TunerHostInfo() |
| | | 9 | | { |
| | 18 | 10 | | AllowHWTranscoding = true; |
| | 18 | 11 | | IgnoreDts = true; |
| | 18 | 12 | | ReadAtNativeFramerate = false; |
| | 18 | 13 | | AllowStreamSharing = true; |
| | 18 | 14 | | AllowFmp4TranscodingContainer = false; |
| | 18 | 15 | | FallbackMaxStreamingBitrate = 30000000; |
| | 18 | 16 | | } |
| | | 17 | | |
| | | 18 | | public string Id { get; set; } |
| | | 19 | | |
| | | 20 | | public string Url { get; set; } |
| | | 21 | | |
| | | 22 | | public string Type { get; set; } |
| | | 23 | | |
| | | 24 | | public string DeviceId { get; set; } |
| | | 25 | | |
| | | 26 | | public string FriendlyName { get; set; } |
| | | 27 | | |
| | | 28 | | public bool ImportFavoritesOnly { get; set; } |
| | | 29 | | |
| | | 30 | | public bool AllowHWTranscoding { get; set; } |
| | | 31 | | |
| | | 32 | | public bool AllowFmp4TranscodingContainer { get; set; } |
| | | 33 | | |
| | | 34 | | public bool AllowStreamSharing { get; set; } |
| | | 35 | | |
| | | 36 | | public int FallbackMaxStreamingBitrate { get; set; } |
| | | 37 | | |
| | | 38 | | public bool EnableStreamLooping { get; set; } |
| | | 39 | | |
| | | 40 | | public string Source { get; set; } |
| | | 41 | | |
| | | 42 | | public int TunerCount { get; set; } |
| | | 43 | | |
| | | 44 | | public string UserAgent { get; set; } |
| | | 45 | | |
| | | 46 | | public bool IgnoreDts { get; set; } |
| | | 47 | | |
| | | 48 | | public bool ReadAtNativeFramerate { get; set; } |
| | | 49 | | } |
| | | 50 | | } |