I'm using the WMP (AxWindowsMediaPlayer) in a C# project and would like to extract the exact time stamp up to 0.1 or 0.01 seconds. Is there any way how to accomplish that?
The following won't work as it's too imprecise :-/
player.Ctlcontrols.currentPositionString
I don't think that having a timer running simultaneously is a good solution because I would have to stop and resume it every time the user pauses the video, and it will eventually become wrong after a few pauses and resumes.