possible windows phone video fix

This commit is contained in:
LukePulverenti 2013-03-07 12:23:52 -05:00
parent b9d5ee9b08
commit 893093a64a

View File

@ -124,6 +124,11 @@ namespace MediaBrowser.Api.Playback.Progressive
args += " -bsf h264_mp4toannexb"; args += " -bsf h264_mp4toannexb";
} }
if (string.Equals("wmv2", videoCodec))
{
args += " -f asf";
}
return args; return args;
} }