aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-03-07 12:23:52 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-03-07 12:23:52 -0500
commit893093a64addacca81c9422e52025f92b829a050 (patch)
treef63c00aac0a1bccb5fa63d65d248416430cc4c75
parentb9d5ee9b0868b35464d79c25c8e224786218b302 (diff)
possible windows phone video fix
-rw-r--r--MediaBrowser.Api/Playback/Progressive/VideoService.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Api/Playback/Progressive/VideoService.cs b/MediaBrowser.Api/Playback/Progressive/VideoService.cs
index 22f3320ca..e6fe18c92 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;
}