aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/BaseStreamingService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-01-01 15:47:54 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-01-01 15:47:54 -0500
commitdbba636290bb004392d4e675322d00d40a31b46f (patch)
treea2241fb56ab91836b215f14423ee750180dee61b /MediaBrowser.Api/Playback/BaseStreamingService.cs
parent20e090e14537ed7284e14b8b52239d240c4ec9cf (diff)
handle unknown video stream
Diffstat (limited to 'MediaBrowser.Api/Playback/BaseStreamingService.cs')
-rw-r--r--MediaBrowser.Api/Playback/BaseStreamingService.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs
index 17997f47a..430504a48 100644
--- a/MediaBrowser.Api/Playback/BaseStreamingService.cs
+++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs
@@ -205,7 +205,8 @@ namespace MediaBrowser.Api.Playback
}
else
{
- args += "-map -0:v";
+ // No known video stream
+ args += "-vn";
}
if (state.AudioStream != null)