aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-03-29 01:45:45 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-03-29 01:45:45 -0400
commit874244a2effe85901339eddf1bef7e0bee8cf5ca (patch)
tree385294cdbcccc8c0f8b3802e4555f8444a6105ab
parent8f7981b6a669cdbdb6877ec1c532976eb38ebf75 (diff)
fixes #92 - Profile & Level args typo
-rw-r--r--MediaBrowser.Api/Playback/Hls/VideoHlsService.cs2
-rw-r--r--MediaBrowser.Api/Playback/Progressive/VideoService.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs b/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs
index 0e43794c3..8825db68e 100644
--- a/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs
+++ b/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs
@@ -160,7 +160,7 @@ namespace MediaBrowser.Api.Playback.Hls
if (!string.IsNullOrEmpty(state.VideoRequest.Level))
{
- args += " -level 3" + state.VideoRequest.Level;
+ args += " -level " + state.VideoRequest.Level;
}
if (state.SubtitleStream != null)
diff --git a/MediaBrowser.Api/Playback/Progressive/VideoService.cs b/MediaBrowser.Api/Playback/Progressive/VideoService.cs
index e756bc314..a2fec6521 100644
--- a/MediaBrowser.Api/Playback/Progressive/VideoService.cs
+++ b/MediaBrowser.Api/Playback/Progressive/VideoService.cs
@@ -153,7 +153,7 @@ namespace MediaBrowser.Api.Playback.Progressive
if (!string.IsNullOrEmpty(state.VideoRequest.Level))
{
- args += " -level 3" + state.VideoRequest.Level;
+ args += " -level " + state.VideoRequest.Level;
}
if (state.SubtitleStream != null)