Network streaming in WMV format using the external profile
Products: Video Capture SDK .Net
Sample code
You can broadcast video via the network using the Windows Media Video format. And you can simultaneously capture video to a file.
You can record both the entire screen and a certain area of it.
You should specify the WMV profile with the video encoder settings, the maximum number of clients, and the port.
VideoCapture1.Network_Streaming_Enabled = true;
VideoCapture1.Network_Streaming_Format = NetworkStreamingFormat.WMV;
var wmvOutput = new WMVOutput();
// apply WMV default settings
VideoCapture1.Network_Streaming_Output = wmvOutput;
VideoCapture1.Network_Streaming_WMV_Maximum_Clients = 100;
VideoCapture1.Network_Streaming_Network_Port = 12345;
The Network_Streaming_URL property contains the URL you can use to connect to watch the video via the network using Windows Media Player or another application supporting this feature.
Required redists
How to install the required redists or deploy them to the user's PC?
Visit our GitHub page to get more code samples.