I am able to stream an rtsp on windows 7 64 bit machine through C# Winform application. This is the library i used – VLCDotNet and here is the code sample to play the RTSP stream:
LocationMedia media = new LocationMedia(@"rtsp://192.168.137.73:554/live.sdp");
vlcControl1.Media = media;
vlcControl1.Play();
I would like to store the streams to a file in my PC on a button click and stop the same with another button. How do i achieve this?
Here is the code: