Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. Am using VLC 2.0(Vlc.DotNet.Core.Medias) version , to play the video in latest VLC Media player using rtsp url in c# code
  2.  
  3. VlcControl _videoControl;
  4. String rtspUrl = networkUrl;
  5. var media = new LocationMedia(rtspUrl);
  6. media.AddOption("rtsp-tcp");
  7. _videoControl.Play(media);
  8.  
  9. The issue here is ,the video is not playing in default Video Track 1 but it is playing in Video Track 2.
  10.  
  11. Is there any way to set the Video Track to 2 in this version of VLC(2.0)?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement