Make ReadInputAtNativeFramerate configurable for M3U tuner (#13773)

This commit is contained in:
timminator
2025-04-03 17:18:00 +02:00
committed by GitHub
parent 596b635511
commit d1ed6593ad
3 changed files with 5 additions and 2 deletions

View File

@@ -9,6 +9,7 @@ namespace MediaBrowser.Model.LiveTv
{
AllowHWTranscoding = true;
IgnoreDts = true;
ReadAtNativeFramerate = false;
AllowStreamSharing = true;
AllowFmp4TranscodingContainer = false;
FallbackMaxStreamingBitrate = 30000000;
@@ -43,5 +44,7 @@ namespace MediaBrowser.Model.LiveTv
public string UserAgent { get; set; }
public bool IgnoreDts { get; set; }
public bool ReadAtNativeFramerate { get; set; }
}
}