Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows Media Player control - get/set video position?

I am using Windows Media Player ActiveX (axWindowsMediaPlayer) component in C# WinForms application. Is it possible to get and set the current position of the video that is being played using this control?

like image 380
m0s Avatar asked Dec 09 '22 09:12

m0s


1 Answers

axWindowsMediaPlayer1.Ctlcontrols.currentPosition = positionInSeconds;

like image 76
loraderon Avatar answered Dec 31 '22 12:12

loraderon