First of all, I'm new to C#, so bear with me.
I am making an application, that shows an .avi file in windows media player like this:
private void button1_Click(object sender, EventArgs e)
{
axWindowsMediaPlayer1.URL = @"C:BlaBla\Family Guy\Season 10\S10E16.HDTV.x264-LOL.avi";
}
I've found out that you cant fastforward or fastrewind in an .avi file, because it's not indexed. But using the WMP-slider of axWindowsMediaPlayer1, you can set the file to play at a specific point. For instance, start the movie, and then drag the slider to 05:00 to skip the first 5 minutes.
I want to do this programaticly, but i have no clue as to how?