hi all.
i have a problem. i want to dynamically control the speed of playing of video using DirectX in C#.NET.
I have this code:


using Microsoft.DirectX.AudioVideoPlayback;
....

Video objVideo =new Video(@"c:\tempVideo.avi");
objVideo.Owner=videoPnl; //where videoPnl in an instance of System.Windows.Forms.Panel
objVideo.Start();
.......
now i want while video is playing ,do control speed of playback. for example i want to slower this or faster this speed dynamically.
sorry if my english is too bad...
thanks.