added mpeg4 as an available output codec

This commit is contained in:
Luke Pulverenti 2013-04-03 23:42:11 -04:00
parent 8397b37827
commit 5a3b5a58a5
4 changed files with 15 additions and 2 deletions

View file

@ -428,6 +428,8 @@ namespace MediaBrowser.Api.Playback
{
return "wmav2";
}
return codec.ToString().ToLower();
}
return "copy";
@ -460,6 +462,8 @@ namespace MediaBrowser.Api.Playback
{
return "libtheora";
}
return codec.ToString().ToLower();
}
return "copy";

View file

@ -250,7 +250,11 @@ namespace MediaBrowser.Api.Playback.Progressive
{
args = "-preset superfast";
}
else if (videoCodec.Equals("mpeg4", StringComparison.OrdinalIgnoreCase))
{
args = "-mbd rd -flags +mv4+aic -trellis 2 -cmp 2 -subcmp 2 -bf 2";
}
if (request.VideoBitRate.HasValue)
{
args += " -b:v " + request.VideoBitRate;

View file

@ -70,7 +70,7 @@ namespace MediaBrowser.Api.Playback
/// Gets or sets the video codec.
/// </summary>
/// <value>The video codec.</value>
[ApiMember(Name = "VideoCodec", Description = "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h264, theora, vpx, wmv.", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET")]
[ApiMember(Name = "VideoCodec", Description = "Optional. Specify a video codec to encode to, e.g. h264. If omitted the server will auto-select using the url's extension. Options: h264, mpeg4, theora, vpx, wmv.", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "GET")]
public VideoCodecs? VideoCodec { get; set; }
/// <summary>

View file

@ -168,6 +168,11 @@
/// </summary>
H264,
/// <summary>
/// The mpeg4
/// </summary>
Mpeg4,
/// <summary>
/// The theora
/// </summary>