Table of Contents

Class RTSPServerSettings

Namespace
VisioForge.Core.Types.X.Output
Assembly
VisioForge.Core.dll

Represents the settings for the RTSP server.

public class RTSPServerSettings

Inheritance

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

videoEncoder IVideoEncoder

The video encoder. Use null to disable video stream.

audioEncoder IAudioEncoder

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

uri Uri

The URI of the RTSP server.

videoEncoder IVideoEncoder

The video encoder. Use null to disable video stream.

audioEncoder IAudioEncoder

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

string

AudioEncoder

Gets or sets the audio encoder for the RTSP server.

public IAudioEncoder AudioEncoder { get; set; }

Property Value

IAudioEncoder

Description

Gets or sets the description of the RTSP server.

public string Description { get; set; }

Property Value

string

Latency

Gets or sets the latency of the RTSP server.

public TimeSpan Latency { get; set; }

Property Value

TimeSpan

Name

Gets or sets the name of the RTSP server.

public string Name { get; set; }

Property Value

string

Password

Gets or sets the password for the RTSP server authentication.

public string Password { get; set; }

Property Value

string

Point

Gets or sets the point for the RTSP server.

public string Point { get; set; }

Property Value

string

Port

Gets or sets the port number for the RTSP server.

public int Port { get; set; }

Property Value

int

URL

Gets the URL of the RTSP server.

public string URL { get; }

Property Value

string

Username

Gets or sets the username for the RTSP server authentication.

public string Username { get; set; }

Property Value

string

VideoEncoder

Gets or sets the video encoder for the RTSP server.

public IVideoEncoder VideoEncoder { get; set; }

Property Value

IVideoEncoder