Table of Contents

Class RISTOutput

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

RIST (Reliable Internet Stream Transport) output settings for low-latency video streaming. Uses MPEG-TS container with RTP payloading over RIST protocol.

public class RISTOutput : IVideoEditXBaseOutput, IVideoCaptureXBaseOutput, IXBaseOutput, IOutputVideoProcessor, IOutputAudioProcessor

Inheritance

Implements

Inherited Members

Constructors

RISTOutput(string, uint)

Initializes a new instance of the VisioForge.Core.Types.X.Output.RISTOutput class.

public RISTOutput(string address = "localhost", uint port = 5004)

Parameters

address string

The destination address.

port uint

The destination port (must be even).

Properties

Audio

Gets or sets the audio encoder settings. Supported encoders: AAC, MP3.

public IAudioEncoder Audio { get; set; }

Property Value

IAudioEncoder

CustomAudioProcessor

Gets or sets the custom audio processor block.

public MediaBlock CustomAudioProcessor { get; set; }

Property Value

MediaBlock

CustomVideoProcessor

Gets or sets the custom video processor block.

public MediaBlock CustomVideoProcessor { get; set; }

Property Value

MediaBlock

Sink

Gets or sets the sink settings.

public RISTSinkSettings Sink { get; set; }

Property Value

RISTSinkSettings

Video

Gets or sets the video encoder settings. Supported encoders: All H264, HEVC, MPEG-2, AV1.

public IVideoEncoder Video { get; set; }

Property Value

IVideoEncoder

Methods

GetAudioEncoders()

Gets the audio encoders.

public Tuple<string, Type>[] GetAudioEncoders()

Returns

Tuple<string, Type>[]

Tuple<System.String, Type>[].

GetFilename()

Gets the filename.

public string GetFilename()

Returns

string

System.String.

GetVideoEncoders()

Gets the video encoders.

public Tuple<string, Type>[] GetVideoEncoders()

Returns

Tuple<string, Type>[]

Tuple<System.String, Type>[].

SetFilename(string)

Sets the filename.

public void SetFilename(string filename)

Parameters

filename string

The filename.