Przeglądaj źródła

possible windows phone video fix

LukePulverenti 12 lat temu
rodzic
commit
893093a64a

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