VideoEncoderBase Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
VideoEncoderBase() |
Initializes a new instance of the VideoEncoderBase class. |
VideoEncoderBase(String, String, VideoScale) |
Initializes a new instance of the VideoEncoderBase class. |
VideoEncoderBase()
Initializes a new instance of the VideoEncoderBase class.
public VideoEncoderBase ();
Public Sub New ()
Applies to
VideoEncoderBase(String, String, VideoScale)
Initializes a new instance of the VideoEncoderBase class.
public VideoEncoderBase (string bitrateKbps = default, string frameRate = default, Microsoft.Azure.Management.VideoAnalyzer.Models.VideoScale scale = default);
new Microsoft.Azure.Management.VideoAnalyzer.Models.VideoEncoderBase : string * string * Microsoft.Azure.Management.VideoAnalyzer.Models.VideoScale -> Microsoft.Azure.Management.VideoAnalyzer.Models.VideoEncoderBase
Public Sub New (Optional bitrateKbps As String = Nothing, Optional frameRate As String = Nothing, Optional scale As VideoScale = Nothing)
Parameters
- bitrateKbps
- String
The maximum bitrate, in kilobits per second or Kbps, at which video should be encoded. If omitted, encoder sets it automatically to try and match the quality of the input video.
- frameRate
- String
The frame rate (in frames per second) of the encoded video. The value must be greater than zero, and less than or equal to 300. If omitted, the encoder uses the average frame rate of the input video.
- scale
- VideoScale
Describes the resolution of the encoded video. If omitted, the encoder uses the resolution of the input video.
Applies to
Azure SDK for .NET