how to reload video in axVLCPlugin21 using C#

2.3k Views Asked by At

How to reload video in axVLCPlugin21 using C# my code just working one time and just open one video although open another video this my code:

private void panel2Open_Click(object sender, EventArgs e)
{


      if (openFileDialog1.ShowDialog()==DialogResult.OK)
      {
          axVLCPlugin21.playlist.add(openFileDialog1.FileName);
          axVLCPlugin21.playlist.play();
          axVLCPlugin21.playlist.items.clear();
      }

} 
1

There are 1 best solutions below

0
On

It is working fine for me even I used it by getting video links for Datagridview:

 string videoSource=dataGridView1.Rows[e.RowIndex].Cells["Link"].Value.ToString();   
 axVLCPlugin21.playlist.add(videoSource, "video", " ");
 axVLCPlugin21.playlist.next();
 axVLCPlugin21.playlist.play();