mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-13 08:37:07 +00:00
Merge 0f8b62edbe into e9942c3857
This commit is contained in:
commit
b278ac314c
2 changed files with 3 additions and 3 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue