I am currently using VlcControl (2014.4.18.0) to play the video in old VLC Media player using rtsp Url in c# code
VlcControl _videoControl;
String rtspUrl = networkUrl;
var media = new LocationMedia(rtspUrl);
media.AddOption("rtsp-tcp");
_videoControl.Play(media);
The issue here is, the video is not playing in default Video Track 1 but it is playing in Video Track 2.
Is there any way to set the Video Track to 2?
Kindly let me know if any options available to set the video track and play.