This commit is contained in:
WizardOfYendor 2026-05-12 23:09:30 +01:00 committed by GitHub
commit b278ac314c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -246,9 +246,9 @@ public class MediaInfoHelper
options.MaxBitrate = GetMaxBitrate(maxBitrate, user, ipAddress);
if (!options.ForceDirectStream)
if (!options.ForceDirectStream && !mediaSource.IsInfiniteStream)
{
// direct-stream http streaming is currently broken
// this was purposefully disabled in PR 7325 in 2022. It's unclear as to why other than "its currently broken".
options.EnableDirectStream = false;
}

View file

@ -145,7 +145,7 @@ namespace Jellyfin.LiveTv.TunerHosts
{
var path = channel.Path;
var supportsDirectPlay = !info.EnableStreamLooping && info.TunerCount == 0;
var supportsDirectPlay = !info.EnableStreamLooping;
var supportsDirectStream = !info.EnableStreamLooping;
var protocol = _mediaSourceManager.GetPathProtocol(path);