GREAT!!! Found a temporary solution for those in need .... Vlc has an option "--no-overlay" which will deal with this problem. This will help you overcome the hardware overlay limitations but still maintain great image quality. For those using VLCusercontrol in c#, this can be added to the...
I'm using the latest libvlc.dll for vlc 0.8.6f and i still get the same problem when using multiple vlc controls in c#. Its hard to pinpoint the cause because each time a different control hangs. There is no logical pattern to it. The only piece of the puzzle i have solved is that turning off the ha...
I have recently discovered that there is another control seated on top of the vlc control during play time. Is this the innervlc window thing? I have never known its true purpose. I'am trying to get the pixel color using getpixel for the vlc control, but it's not working and i think its because of t...
Hi, i've been struggling with this bitrate issue myself. I can see that the vlc player can retrieve the current bitrate of a stream in real time. How can one emulate this. Below is my c# code written in an attempt to do this. So far it just bugs out on the dll call. Where am i going wrong. Also, is ...
That will create problems when you try to crop the vlc player to fill the window. The two windows cannot be stretched over each other. but i believe the new API for vlc 0.8.6d has something to allow me to handle that problem. Anyone who can make sense of it? Please help, not that good with c++ heade...
Checkout my c# code, maybe something here can help you. You'll need to port it though. timer1.Enabled = false; newPos = trcPos.Value; VLanControl.TrackPosition tPos; int vLen = vlcUserControl1.Length; float findPos = ((float.Parse(newPos.ToString())/10000)); vlcUserControl1.MoveToPosition(new VLanCo...
it appears no one has an answer to this problem. I'll assume vlc did not cater for this. Anyways, i was thinking about going around the issue by creating a timer that will minize the screen every 2 or so seconds. Should have no negative effects on the playtime nor generate any errors because of the ...
I need help preventing the vlc .net control from jumping into fullscreen when double clicked. All attempts to trap that event have proved fruitless. Can anybody help me.