diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-06-06 02:15:18 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-06 02:15:18 -0400 |
| commit | a2c9994819ec375bdd9835ede904c223103edd45 (patch) | |
| tree | ca62e7bcbeeb30ed28b620f39185f0fa4f6ac988 /MediaBrowser.Controller | |
| parent | b10021b35ff820d296d897685dac531e15ace1f2 (diff) | |
| parent | 2546eaa1c2b41096204b9bc9a9e5a3854b37a3be (diff) | |
Merge pull request #2691 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Video.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/Video.cs b/MediaBrowser.Controller/Entities/Video.cs index fb31d9a474..b6887940ed 100644 --- a/MediaBrowser.Controller/Entities/Video.cs +++ b/MediaBrowser.Controller/Entities/Video.cs @@ -633,14 +633,17 @@ namespace MediaBrowser.Controller.Entities if (info.Path.StartsWith("Http", StringComparison.OrdinalIgnoreCase)) { info.Protocol = MediaProtocol.Http; + info.SupportsDirectStream = false; } else if (info.Path.StartsWith("Rtmp", StringComparison.OrdinalIgnoreCase)) { info.Protocol = MediaProtocol.Rtmp; + info.SupportsDirectStream = false; } else if (info.Path.StartsWith("Rtsp", StringComparison.OrdinalIgnoreCase)) { info.Protocol = MediaProtocol.Rtsp; + info.SupportsDirectStream = false; } else { |
