我想开发一个视频播放器,它必须在视频中播放不同的部分(由它们的开始 n 结束位置指定)。为此,我正在使用 directx.audiovideoplayback dll。开始和结束位置存储在一个数组中。例如- {2,6,8,19} 表示必须播放第 2 到第 6 秒之间的片段,然后应该播放第 8 到第 19 秒。
我的问题是,尽管我给出了条件 if(video_obj.CurrentPosition==endtime) video_obj.Stop(); 视频没有停止..视频正在从第二个位置播放到文件末尾。
代码是
public static int[] seconds = { 3,8,12,16};
public static int start, end;
private void btnPlay_Click(object sender, EventArgs e)
{
vdo.Owner = panel1;
panel1.Width = 300;
panel1.Height = 150;
vdoTrackBar.Minimum = 0;
vdoTrackBar.Maximum = Convert.ToInt32(vdo.Duration);
if (vdo != null)
{
vdo.Play();
timer1.Start();
}
}
private void vdoTrackBar_Scroll(object sender, EventArgs e)
{
if (vdo != null)
{
vdo.CurrentPosition = vdoTrackBar.Value;
}
}
private void timer1_Tick(object sender, EventArgs e)
{
int i;
for (i = 0; i < seconds.Length; i = i + 2)
{
start = seconds[i];
vdo.CurrentPosition = start;
end = seconds[i + 1];
vdoTrackBar.Value = (int)vdo.CurrentPosition;
MessageBox.Show("Starts at " + vdo.CurrentPosition + " and Ends at " + end);
if (vdo.Paused)
vdo.Play();
if (vdo.Playing)
{
if (vdo.CurrentPosition == vdo.Duration)
{
timer1.Stop();
vdo.Pause();
vdoTrackBar.Value = 0;
}
if (vdo.CurrentPosition == end)
{
timer1.Stop();
vdo.Pause();
}
vdoTrackBar.Value += 1;
}
}
帮助!某处出了点问题,我对此一无所知 我该如何纠正?当我开始播放视频时