When I'm trying to a conversion with the following parameters:
mediaItem.OutputFormat.VideoProfile = new MainVC1VideoProfile()
{
Size = new System.Drawing.Size(1920, 1200),
Bitrate = new VariableQualityBitrate(75),
Complexity = VideoComplexity.Normal,
FrameRate = 1,
KeyFrameDistance = TimeSpan.FromSeconds(20)
};
I'm getting the following error:
The combined width, height and frame rate are too high for this profile.
Can anyone help me and tell me what are the limitations to each profile?
SimpleVC1VideoProfile
MainVC1VideoProfile
AdvancedVC1VideoProfile