VideoEncoderH264 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
VideoEncoderH264() |
Initializes a new instance of the VideoEncoderH264 class. |
VideoEncoderH264(String, String, VideoScale) |
Initializes a new instance of the VideoEncoderH264 class. |
VideoEncoderH264()
Initializes a new instance of the VideoEncoderH264 class.
public VideoEncoderH264 ();
Public Sub New ()
Applies to
VideoEncoderH264(String, String, VideoScale)
Initializes a new instance of the VideoEncoderH264 class.
public VideoEncoderH264 (string bitrateKbps = default, string frameRate = default, Microsoft.Azure.Management.VideoAnalyzer.Models.VideoScale scale = default);
new Microsoft.Azure.Management.VideoAnalyzer.Models.VideoEncoderH264 : string * string * Microsoft.Azure.Management.VideoAnalyzer.Models.VideoScale -> Microsoft.Azure.Management.VideoAnalyzer.Models.VideoEncoderH264
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