1
Answer

How to stream video using vlc plugin in c#

Tantod Chetan

Tantod Chetan

9y
4.5k
1
axVLCPlugin21.AutoPlay = false;
axVLCPlugin21.playlist.add(@"F:\01.mp4");
}
private void button1_Click(object sender, EventArgs e)
{
axVLCPlugin21.playlist.playItem(0);
}
Answers (1)