mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 15:48:03 +00:00
Some checks are pending
CodeQL / Analyze (csharp) (push) Waiting to run
OpenAPI / OpenAPI - HEAD (push) Waiting to run
OpenAPI / OpenAPI - BASE (push) Waiting to run
OpenAPI / OpenAPI - Difference (push) Blocked by required conditions
OpenAPI / OpenAPI - Publish Unstable Spec (push) Blocked by required conditions
OpenAPI / OpenAPI - Publish Stable Spec (push) Blocked by required conditions
Tests / run-tests (macos-latest) (push) Waiting to run
Tests / run-tests (ubuntu-latest) (push) Waiting to run
Tests / run-tests (windows-latest) (push) Waiting to run
Project Automation / Project board (push) Waiting to run
Merge Conflict Labeler / Labeling (push) Waiting to run
51 lines
1.2 KiB
C#
51 lines
1.2 KiB
C#
#nullable disable
|
|
#pragma warning disable CS1591
|
|
|
|
namespace MediaBrowser.Model.LiveTv
|
|
{
|
|
public class TunerHostInfo
|
|
{
|
|
public TunerHostInfo()
|
|
{
|
|
AllowHWTranscoding = true;
|
|
IgnoreDts = true;
|
|
ReadAtNativeFramerate = false;
|
|
AllowStreamSharing = true;
|
|
AllowFmp4TranscodingContainer = false;
|
|
FallbackMaxStreamingBitrate = 30000000;
|
|
}
|
|
|
|
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; }
|
|
|
|
public bool AllowFmp4TranscodingContainer { get; set; }
|
|
|
|
public bool AllowStreamSharing { get; set; }
|
|
|
|
public int FallbackMaxStreamingBitrate { get; set; }
|
|
|
|
public bool EnableStreamLooping { get; set; }
|
|
|
|
public string Source { get; set; }
|
|
|
|
public int TunerCount { get; set; }
|
|
|
|
public string UserAgent { get; set; }
|
|
|
|
public bool IgnoreDts { get; set; }
|
|
|
|
public bool ReadAtNativeFramerate { get; set; }
|
|
}
|
|
}
|