diff --git a/Jellyfin.Xtream/LiveChannel.cs b/Jellyfin.Xtream/LiveChannel.cs index 01e3fe3..89e6f46 100644 --- a/Jellyfin.Xtream/LiveChannel.cs +++ b/Jellyfin.Xtream/LiveChannel.cs @@ -192,6 +192,9 @@ private async Task GetVideos(string categoryId, CancellationT Name = channel.Name, Path = uri, Protocol = MediaBrowser.Model.MediaInfo.MediaProtocol.Http, + SupportsDirectPlay = false, + SupportsDirectStream = true, + SupportsProbing = true, } }; items.Add(new ChannelItemInfo() diff --git a/Jellyfin.Xtream/SerieChannel.cs b/Jellyfin.Xtream/SerieChannel.cs index a1cf673..2738be4 100644 --- a/Jellyfin.Xtream/SerieChannel.cs +++ b/Jellyfin.Xtream/SerieChannel.cs @@ -312,6 +312,9 @@ private async Task GetEpisodes(string seriesId, int season, C Name = episode.Title, Path = uri, Protocol = MediaBrowser.Model.MediaInfo.MediaProtocol.Http, + SupportsDirectPlay = false, + SupportsDirectStream = true, + SupportsProbing = true, } }; items.Add(new ChannelItemInfo() diff --git a/Jellyfin.Xtream/VodChannel.cs b/Jellyfin.Xtream/VodChannel.cs index 06e3330..8ad5c07 100644 --- a/Jellyfin.Xtream/VodChannel.cs +++ b/Jellyfin.Xtream/VodChannel.cs @@ -194,6 +194,9 @@ private async Task GetVideos(string categoryId, CancellationT Name = channel.Name, Path = uri, Protocol = MediaBrowser.Model.MediaInfo.MediaProtocol.Http, + SupportsDirectPlay = false, + SupportsDirectStream = true, + SupportsProbing = true, } }; items.Add(new ChannelItemInfo()