How to add transparent control over video control like wpf shortcut on top of media element
I want to add a transparent label or textbox on top of the video control on playback, but in wpf I used a shortcut above the media element and that was fine.
How can you get the same behavior in C # winforms or native C ++ or what do you know? I am using vlc media player control
how does wpf do it? way?
+3
ahmedsafan86
source
to share
1 answer
You will have to either:
and. Disable hardware acceleration for video playback.
Q. Use the library for directX and intercept frames by redrawing content over the frame.
This library might help, but it's been a couple of years since I played with video tech.
http://directshownet.sourceforge.net/
0
James
source
to share