diff --git a/MediaBrowser.Api/Playback/Progressive/VideoService.cs b/MediaBrowser.Api/Playback/Progressive/VideoService.cs index 22f3320caf..e6fe18c927 100644 --- a/MediaBrowser.Api/Playback/Progressive/VideoService.cs +++ b/MediaBrowser.Api/Playback/Progressive/VideoService.cs @@ -124,6 +124,11 @@ namespace MediaBrowser.Api.Playback.Progressive args += " -bsf h264_mp4toannexb"; } + if (string.Equals("wmv2", videoCodec)) + { + args += " -f asf"; + } + return args; }