public string TargetAddress { get; set; }
String containing the IP address. The address can be in the IPv4 format ("192.168.0.120") or a host address ("localhost").
The RTSP Server will listen for RTSP clients to connect to the address specified by this function and the port passed to StartServer.
See How to Get Your Own IP Address Programmatically on how to get the IP addresses for the network adapters in your computer.
using Leadtools;
using Leadtools.Multimedia;
using LeadtoolsMultimediaExamples.Fixtures;
RTSPServer _server = null;
public void StartServer()
{
// create the server instance
_server = new RTSPServer();
// specify c:\MyFiles as the source folder
_server.SetSourceFolder(0, @"c:\MyFiles");
// will listen on 127.0.0.1
_server.TargetAddress = "127.0.0.1";
// start listening on port 554
_server.StartServer(554);
// set the latency
_server.SetLiveLatency(-1, 0.7);
}
public void StopServer()
{
_server.StopServer(554);
_server.Dispose();
_server = null;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document