Hi
I have embedded vlc plugin in C# windows form application.
Objective is to selectively play programs from Multi Program TS file.
var uri1 = new Uri(@"C:\sample\football.ts");
var curi = uri1.AbsoluteUri;
axVLCPlugin21.playlist.add(curi, null, ":sout=#es{access=file,dst=display,select=program=4}");
axVLCPlugin21.playlist.play();
The colored aspect shows that i want to plat program 4 from the ts file.Irrespective of what program i mention it always plays first program only.
what am i missing?
if i try from command line of vlc ,it plays the selected program
C:\Program Files (x86)\VideoLAN\VLC> vlc --program 4 football.ts
Any suggestion towards answer is greatly appreciated.