Browse Source

possible windows phone video fix

LukePulverenti 12 years ago
parent
commit
893093a64a
1 changed files with 5 additions and 0 deletions
  1. 5 0
      MediaBrowser.Api/Playback/Progressive/VideoService.cs

+ 5 - 0
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;
         }