Search found 415 matches

Go to advanced search

by erwan10
08 Feb 2011 09:26
Forum: Skins
Topic: Move up or down item in playlist ???
Replies: 3
Views: 3542

Re: Move up or down item in playlist ???

Yes, this is a current limitation of the playlist in the skins2 interface.
by erwan10
08 Feb 2011 09:24
Forum: Skins
Topic: Skins and "Media Browser" incompatibility?
Replies: 3
Views: 2190

Re: Skins and "Media Browser" incompatibility?

You most probably forgot -S in front of audio_dir.
I just copied and pasted this command on Linux with vlc1.1.7. It works fine. On Windows, it also should work (maybe { needs to be escaped ?)
by erwan10
04 Feb 2011 10:24
Forum: Skins
Topic: Skin button for specific rtp stream
Replies: 1
Views: 1038

Re: Skin button for specific rtp stream

No, as of today, the only way to play back something is through the playlist.
by erwan10
01 Feb 2011 09:32
Forum: Skins
Topic: Skins and "Media Browser" incompatibility?
Replies: 3
Views: 2190

Re: Skins and "Media Browser" incompatibility?

Those entries are not yet implemented by default with the skins2 interface. Nevertheless, you can configure vlc to start them automatically and skins2 will display them together with Playlist and Media Library. Just run vlc for instance like : vlc -I skins -S audio_dir{longname=MyAudio},video_dir{lo...
by erwan10
29 Jan 2011 16:38
Forum: Skins
Topic: New features added in the dev branch
Replies: 18
Views: 66145

Re: New features added in the dev branch

You're right. That needs a correction too, at least for the sake of consistency. Probably having both work is more desirable.
by erwan10
28 Jan 2011 17:24
Forum: Skins
Topic: New features added in the dev branch
Replies: 18
Views: 66145

Re: New features added in the dev branch

Updated mine to the new features. Fullscreen controller works very well, no more artifacts on moving. Transparency and movement are smooth too. Tested on Win7 x64 with 1.2. nice to hear it works Btw: vlc.faster() and vlc.slower() broken? Can´t bring em to work, regardless of the version. Thanks for...
by erwan10
28 Jan 2011 00:05
Forum: Skins
Topic: vlc change skin and position
Replies: 2
Views: 1956

Re: vlc change skin and position

The skins2 interface doesn't use video-x and video-y.

All placements (window, video control, ..... ) are read from the theme.xml file. (attributes are x and y expressed in pixels).
Default values are (0,0) if not provided.
by erwan10
27 Jan 2011 11:03
Forum: VLC media player for Windows Troubleshooting
Topic: VLC 1.1.0 Bug Skin + Dual Display
Replies: 3
Views: 472

Re: VLC 1.1.0 Bug Skin + Dual Display

As of today, the skins2 interface does not manage multiple screens as far as fullscreen is concerned. This is not a bug per se, but a skins2 limitation.

Filling a bug does no harm, since it is a legitimate request.
by erwan10
27 Jan 2011 10:47
Forum: Skins
Topic: New features added in the dev branch
Replies: 18
Views: 66145

Re: New features added in the dev branch

As dev branch, I meant the next major not-yet-released version (aka vlc1.2.0). You can already test it on windows (latest build as of today is in http://nightlies.videolan.org/build/win ... 0127-0003/)
by erwan10
21 Jan 2011 13:00
Forum: VLC media player for Windows Troubleshooting
Topic: Help playing fullscreen on second monitor using command line
Replies: 4
Views: 3527

Re: Help playing fullscreen on second monitor using command

The --qt-fullscreen-screennumber=2 option only works if you use the qt interface (-I qt instead of -I dummy)

I'm not sure you can configure alternative screens with the dummy interface on Windows.
by erwan10
21 Jan 2011 12:03
Forum: VLC media player Feature Requests
Topic: OSD Marquee Editing On-The-Fly, Black Screen, OSD via VNC
Replies: 8
Views: 2930

Re: OSD Marquee Editing On-The-Fly, Black Screen, OSD via VN

From what I recall, the rc interface gets the input item being played back via the playlist API.

Inputs managed either by vlm or libvlc are another story (they are not managed via the legacy playlist). Therefore chances that it works are slim :(
by erwan10
20 Jan 2011 12:52
Forum: Skins
Topic: Custom Skins Not Working Correctly (1.1.5)
Replies: 5
Views: 2373

Re: Custom Skins Not Working Correctly (1.1.5)

weird indeed. I don't experience such a behavior on a large scale with WinXP and the latest 1.1.6 build, and I don't recall it not working on 1.1.5 You may come across a few alternative skins from the vlc website that have some problems (missing bitmaps, ....) but those are not that many, and proble...
by erwan10
20 Jan 2011 10:07
Forum: Skins
Topic: Right click menu
Replies: 2
Views: 1491

Re: Right click menu

Yes, this can only be achieved by modifying and recompiling the code.
by erwan10
07 Jan 2011 21:54
Forum: General VLC media player Troubleshooting
Topic: VLC 1.1.5 fullscreen, unwanted titlebar
Replies: 10
Views: 1546

Re: VLC 1.1.5 fullscreen, unwanted titlebar

There is indeed a limitation that could be worked out. As of today, a "window provider" is looked for with a whole set of initial parameters (x, y, width, height, is_standalone). Unfortunately, fullscreen is not passed at this level, but only in a subsequent call. This results in the inter...
by erwan10
05 Jan 2011 10:27
Forum: Skins
Topic: no autohide for fullscreen controller?
Replies: 3
Views: 2939

Re: no autohide for fullscreen controller?

This will be implemented in the next major release.
If you wish to give it a try, we can install a nightly build
(for instance, http://nightlies.videolan.org/build/win ... 0105-0002/ for Windows users)
by erwan10
11 Dec 2010 15:34
Forum: Skins
Topic: VLC Skinnable Interface : Panel Z-Order ?
Replies: 4
Views: 2027

Re: VLC Skinnable Interface : Panel Z-Order ?

The problem described in this thread was indeed a bit annoying and actually not very difficult to remedy. Starting with vlc1.2 (dev branch), a new attribute ' focus ' has just been added to a text control . It goes like this : - Default value is focus="true", which means that skins still b...
by erwan10
03 Dec 2010 22:24
Forum: VLC media player for Windows Troubleshooting
Topic: Catch mouse events vlc 1.1.5 and Qt
Replies: 4
Views: 695

Re: Catch mouse events vlc 1.1.5 and Qt

Catching mouse events over the video on Win32 is possible, but not an easy task. (both vlc1.1.5 and vlc1.2) VLC actually manages the video window in its own thread (with its own message queue). Therefore, the QT4 thread won't receive these events. The Win32 API provides "global hooks" to s...
by erwan10
29 Nov 2010 22:13
Forum: Skins
Topic: New features added in the dev branch
Replies: 18
Views: 66145

Re: New features added in the dev branch

Well, vlc1.2 is not yet out .... that gives time, I guess ! And the fullscreen controller transparency/fading-out is actually not so promising at least on WinXP : - fully functional with --vout wingdi (but who really uses it ?) - works weirdly with --vout directx - works wildly with --vout opengl So...
by erwan10
28 Nov 2010 16:03
Forum: Skins
Topic: New features added in the dev branch
Replies: 18
Views: 66145

New features added in the dev branch

Hello, Here is a review of what has just been added in the dev branch regarding skins2 : - fullscreen controller : - it can now also be activated by mouse move - transparency and fading out are supported when the Window Manager supports it. - qt-opacity and qt-fs-opacity parameters are now recognize...
by erwan10
17 Nov 2010 10:38
Forum: Skins
Topic: playtree.cpp has little bit problem.
Replies: 1
Views: 1070

Re: playtree.cpp has little bit problem.

You're right. I will correct it.
by erwan10
31 Oct 2010 16:05
Forum: Skins
Topic: Hotkeys Limited in "Skinned" mode!?
Replies: 5
Views: 2162

Re: Hotkeys Limited in "Skinned" mode!?

Oops ... I just discovered there are more than 4 actions available. One of them is 'dialogs.fileInfo()' that should help you (no more menus and submenus before accessing this info dialog box).

As for a dedicated hotkey, I'm afraid it is definitely not available as of today.
by erwan10
31 Oct 2010 15:44
Forum: Skins
Topic: Hotkeys Limited in "Skinned" mode!?
Replies: 5
Views: 2162

Re: Hotkeys Limited in "Skinned" mode!?

No, sorry, there are no such parameters at the command line to configure dialog boxes. And Skins designers long ago decided to expose only a subsets of menus/dialog boxes in the form of 4 actions (see previous post). I can see two things that can be only done at the dev level : - Extend the skins ap...
by erwan10
30 Oct 2010 13:36
Forum: Skins
Topic: Hotkeys Limited in "Skinned" mode!?
Replies: 5
Views: 2162

Re: Hotkeys Limited in "Skinned" mode!?

1)a Setting I am missing? No, the qt4 interface specific hotkeys (Ctrl-Something) are not available with skins. Only hotkeys managed by vlc core are available ( A for Aspect, C for Crop, ...). And Yes, this can be eligible as a new feature request. There are some alternatives to right-clicking to g...
by erwan10
28 Oct 2010 20:54
Forum: Development around libVLC
Topic: LibVLC to OpenGL texture
Replies: 5
Views: 4110

Re: LibVLC to OpenGL texture

Not sure I know the answer to your question, but I see two things that may be a problem .... - proper locking mechanism (first program) Since you're dealing with multiple threads, all threads accessing a common resource must lock it. Otherwise, your code is prone to crash (see code hereafter that hi...
by erwan10
27 Oct 2010 14:32
Forum: Development around libVLC
Topic: Qt+libvlc+linux = crash on ~QApplication
Replies: 4
Views: 1084

Re: Qt+libvlc+linux = crash on ~QApplication

On X11, special care must be taken with dealing with a multithreaded application (if several threads make calls to the underlying xlib library). A special function XInitThreads() must be called first things before any other call to xlib occurs. Here is a modified main.cpp. (tested successfully) /* l...

Go to advanced search

cron