Class RTSPServerSettings
- Namespace
- VisioForge.Core.Types.X.Output
- Assembly
- VisioForge.Core.dll
Represents the settings for the RTSP server.
public class RTSPServerSettingsInheritance
Inherited Members
Constructors
RTSPServerSettings(IVideoEncoder, IAudioEncoder)
Initializes a new instance of the VisioForge.Core.Types.X.Output.RTSPServerSettings class.
public RTSPServerSettings(IVideoEncoder videoEncoder, IAudioEncoder audioEncoder)Parameters
videoEncoderIVideoEncoder-
The video encoder. Use null to disable video stream.
audioEncoderIAudioEncoder-
The audio encoder. Use null to disable audio stream.
RTSPServerSettings(Uri, IVideoEncoder, IAudioEncoder)
Initializes a new instance of the VisioForge.Core.Types.X.Output.RTSPServerSettings class.
public RTSPServerSettings(Uri uri, IVideoEncoder videoEncoder, IAudioEncoder audioEncoder)Parameters
uriUri-
The URI of the RTSP server.
videoEncoderIVideoEncoder-
The video encoder. Use null to disable video stream.
audioEncoderIAudioEncoder-
The audio encoder. Use null to disable audio stream.
Properties
Address
Gets or sets the address of the RTSP server.
public string Address { get; set; }Property Value
AudioEncoder
Gets or sets the audio encoder for the RTSP server.
public IAudioEncoder AudioEncoder { get; set; }Property Value
Description
Gets or sets the description of the RTSP server.
public string Description { get; set; }Property Value
Latency
Gets or sets the latency of the RTSP server.
public TimeSpan Latency { get; set; }Property Value
Name
Gets or sets the name of the RTSP server.
public string Name { get; set; }Property Value
Password
Gets or sets the password for the RTSP server authentication.
public string Password { get; set; }Property Value
Point
Gets or sets the point for the RTSP server.
public string Point { get; set; }Property Value
Port
Gets or sets the port number for the RTSP server.
public int Port { get; set; }Property Value
URL
Gets the URL of the RTSP server.
public string URL { get; }Property Value
Username
Gets or sets the username for the RTSP server authentication.
public string Username { get; set; }Property Value
VideoEncoder
Gets or sets the video encoder for the RTSP server.
public IVideoEncoder VideoEncoder { get; set; }