Search found 6 matches

Go to advanced search

by mnn
12 Jul 2011 00:25
Forum: Development around libVLC
Topic: VLCJ and window without decorations
Replies: 5
Views: 996

Re: VLCJ and window without decorations

Hmm, OK, it might be Windows-specific bug, but I kind of doubt that.

I mean if I comment out line this.setUndecorated(true) in JFrame constructor, suddenly panel gets resized correctly. That sounds like a bug to me.
by mnn
11 Jul 2011 20:04
Forum: Development around libVLC
Topic: VLCJ and window without decorations
Replies: 5
Views: 996

Re: VLCJ and window without decorations

OK, I separated enough code to make a sample, but that works :( Apparently VLCJ doesn't like if the video canvas is in a panel, which is located in another panel, and that panel is located in a JFrame (so JFrame -> JPanel -> JPanel -> Canvas (VLCJ)). I tried to cut one panel, and it works (without d...
by mnn
11 Jul 2011 14:41
Forum: Development around libVLC
Topic: VLCJ and window without decorations
Replies: 5
Views: 996

VLCJ and window without decorations

Hi, is it possible to have a window which contains panel, in which VLCJ plays a video, but having the window without decorations? I tried using setUndecorated(true) on JFrame , but the video isn't rendered at all. I tried using JWindow and still no video rendered at all. Just a remainder: I don't wa...
by mnn
24 Dec 2008 11:14
Forum: Development around libVLC
Topic: VideoLan.Interop a .Net libvlc 0.9.x wrapper
Replies: 195
Views: 86277

Re: VideoLan.Interop a .Net libvlc 0.9.x wrapper

I guess the problem isn't in wrapper but in libVlc itself...
by mnn
31 Oct 2008 10:09
Forum: Development around libVLC
Topic: VideoLan.Interop a .Net libvlc 0.9.x wrapper
Replies: 195
Views: 86277

Re: VideoLan.Interop a .Net libvlc 0.9.x wrapper

void vlcMediaPlayer_StateChanged(object sender, StateChangedEventArgs e) { if (InvokeRequired == true) Invoke(new EventHandler<StateChangedEventArgs>(vlcMediaPlayer_StateChanged), sender, e); else { if (vlcMediaPlayer.State == VlcState.Playing) { trackBar.Maximum = (int)vlcMediaPlayer.Length; } } }
by mnn
12 Oct 2008 15:28
Forum: Development around libVLC
Topic: C# Wrapper for libvlc 0.9.0 - Testers Required
Replies: 153
Views: 83077

Re: C# Wrapper for libvlc 0.9.0 - Testers Required

Interesting. I've tested it and it worked, however I'm concerned that there hasn't been any progres since approx. August so I assume that this is dead, but I hope that it isn't.

Go to advanced search