vote up 0 vote down star

Is there a way to stop a video at a particular position using Windows Media Player SDK? I am using C# for embedding the player and trying to see if the IWMPControls3 Interface has any stopping capability at a particular point in terms of position or time. If it can be done, then how to do it?

flag
1  
Why no to use pause and then put_currentPosition ? – Kirill V. Lyadvinsky Jul 16 at 16:52
1  
Assume that you pause and set currentposition and video starts playing from that position. Now, how to stop the video at some other position? – Arvind Jul 16 at 17:04
You can read from the position as well. Set a timer to read the position, then stop the player when it reaches the position you care about. – John Fisher Jul 16 at 17:34
thank you so much – Arvind Jul 16 at 17:57

1 Answer

vote up 0 vote down

It certainly can be done, though I no longer remember the techniques. There are ways that you can access the data in the stream well enough to reconstruct the audio and individual frames of video. People have written systems where the user can type a precise time and frame number and the video player jumps to that spot.

Since your question was "is there a way", the answer is "Yes". However, I can't remember enough of the specifics to tell you how to do it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.