2021-02-20 23:13:04 +01:00
|
|
|
#nullable disable
|
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.LiveTv
|
|
|
|
|
{
|
|
|
|
|
public class TunerHostInfo
|
|
|
|
|
{
|
|
|
|
|
public TunerHostInfo()
|
|
|
|
|
{
|
|
|
|
|
AllowHWTranscoding = true;
|
2022-06-13 00:51:08 +02:00
|
|
|
IgnoreDts = true;
|
2025-04-03 17:18:00 +02:00
|
|
|
ReadAtNativeFramerate = false;
|
2024-09-08 11:08:54 +08:00
|
|
|
AllowStreamSharing = true;
|
|
|
|
|
AllowFmp4TranscodingContainer = false;
|
|
|
|
|
FallbackMaxStreamingBitrate = 30000000;
|
2021-02-20 23:13:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Url { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Type { get; set; }
|
|
|
|
|
|
|
|
|
|
public string DeviceId { get; set; }
|
|
|
|
|
|
|
|
|
|
public string FriendlyName { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool ImportFavoritesOnly { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool AllowHWTranscoding { get; set; }
|
|
|
|
|
|
2024-09-08 11:08:54 +08:00
|
|
|
public bool AllowFmp4TranscodingContainer { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool AllowStreamSharing { get; set; }
|
|
|
|
|
|
|
|
|
|
public int FallbackMaxStreamingBitrate { get; set; }
|
|
|
|
|
|
2021-02-20 23:13:04 +01:00
|
|
|
public bool EnableStreamLooping { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Source { get; set; }
|
|
|
|
|
|
|
|
|
|
public int TunerCount { get; set; }
|
|
|
|
|
|
|
|
|
|
public string UserAgent { get; set; }
|
2022-06-13 00:51:08 +02:00
|
|
|
|
|
|
|
|
public bool IgnoreDts { get; set; }
|
2025-04-03 17:18:00 +02:00
|
|
|
|
|
|
|
|
public bool ReadAtNativeFramerate { get; set; }
|
2021-02-20 23:13:04 +01:00
|
|
|
}
|
|
|
|
|
}
|