How to get the current frame?

I would like to send to another frame (number) of the current application. Is it possible to access it in axWindowsMediaPlayer control?

+4
source share
2 answers

I did not see anything about this on the axWindowsMediaPlayer control.

But you can use the FrameGrabber project to extract frames from a movie. FrameGrabber is an open source library written in C # and is easy to use.

Hope this helps.

+2
source

It may be an old thread, but I feel that the question has not received the proper answer. It may not be a "frame number", but it gives you the "position" of the video that you could transmit. I use it to sync two videos. This is for a media player that has already been added to the VB form called AxWindowsMediaPlayer1. I'm sure something like this can be called in C #

Dim position As Double position = AxWindowsMediaPlayer1.Ctlcontrols.currentPosition 
+1
source

Source: https://habr.com/ru/post/1379373/


All Articles