Video is not rendered in accord videoSourcePlayer control
Clash Royale CLAN TAG #URR8PPP Video is not rendered in accord videoSourcePlayer control I have an accord videoSourcePlayer control in my form.Why is it that it is not rendering the video that I select? Please see my code below: // Open video file using DirectShow private void openVideoFileusingDirectShowToolStripMenuItem_Click(object sender, EventArgs e) if (openFileDialog.ShowDialog() == DialogResult.OK) // create video source FileVideoSource = new FileVideoSource(openFileDialog.FileName); // open it sourceInitialiization = true; OpenVideoSource(FileVideoSource); // Open video source private void OpenVideoSource(IVideoSource source) // set busy cursor this.Cursor = Cursors.WaitCursor; // close previous video source CloseVideoSource(); // start new video source videoSourcePlayer.VideoSource = new AsyncVideoSource(source); videoSourcePlayer.Start(); // reset statistics statIndex = statReady = 0; // start timers timer.Start(); alarmTimer.Start(); //alarmTimer...