aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MediaBrowser.Api/Playback/BaseStreamingService.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs
index 19b339cd7..9411a29c5 100644
--- a/MediaBrowser.Api/Playback/BaseStreamingService.cs
+++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs
@@ -533,7 +533,10 @@ namespace MediaBrowser.Api.Playback
if (video != null)
{
- inputPath = MediaEncoderHelpers.GetInputArgument(video, isoMount, out type);
+ if (!(video.VideoType == VideoType.Iso && isoMount == null))
+ {
+ inputPath = MediaEncoderHelpers.GetInputArgument(video, isoMount, out type);
+ }
}
return MediaEncoder.GetInputArgument(inputPath, type);