diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-03-29 08:26:40 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-03-29 08:26:40 -0400 |
| commit | 4b65b8c05064257cd456db10e623de970a898744 (patch) | |
| tree | e6fda5657702fd208879464d9f344c09b19d16b5 | |
| parent | 7d4356b12a6f428a075747a445cc75a6744f8f5d (diff) | |
profile fix for hls
| -rw-r--r-- | MediaBrowser.Api/Playback/Hls/VideoHlsService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs b/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs index 8825db68e..94b9d6924 100644 --- a/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs +++ b/MediaBrowser.Api/Playback/Hls/VideoHlsService.cs @@ -155,7 +155,7 @@ namespace MediaBrowser.Api.Playback.Hls if (!string.IsNullOrEmpty(state.VideoRequest.Profile)) { - args += " -profile:v" + state.VideoRequest.Profile; + args += " -profile:v " + state.VideoRequest.Profile; } if (!string.IsNullOrEmpty(state.VideoRequest.Level)) |
