Search found 415 matches

Go to advanced search

by erwan10
27 Oct 2010 11:43
Forum: Development around libVLC
Topic: Libvlc skins2 interface
Replies: 4
Views: 478

Re: Libvlc skins2 interface

Actually, you might be the first person ever to try and mix skins2 and libvlc. But why not, :) One thing to be aware of is that, if you were to use the skins2 playlist system, the related libvlc API (libvlc_playlist_play, ... ) is deprecated. I just carried out a bunch of test on Linux with the late...
by erwan10
25 Oct 2010 14:30
Forum: Development around libVLC
Topic: Libvlc skins2 interface
Replies: 4
Views: 478

Re: Libvlc skins2 interface

The following line is wrong char *myarg0 = "-I"; char *myarg1 = "skins2=C:\\prova.vlt"; //prova.xml Somthing along these lines should work char *myarg0 = "-I"; char *myarg1 = "skins"; char *myarg3 = "--skins2-last"; char *myarg4 = "C:\\prova.vlt...
by erwan10
17 Oct 2010 20:14
Forum: General VLC media player Troubleshooting
Topic: Vlc and xspf: mix movie and still images
Replies: 5
Views: 1581

Re: Vlc and xspf: mix movie and still images

With the next major vlc version (aka vlc1.2), everything you ask for will be available. You'll just have to set up --image-duration to 0 to avoid the 10-second default duration for still images. On Windows, you can already get a nightly build and test it (for instance, http://nightlies.videolan.org/...
by erwan10
01 Oct 2010 10:52
Forum: VLC media player for Linux and friends Troubleshooting
Topic: VLC with skins2 interface crashes on start
Replies: 4
Views: 528

Re: VLC with skins2 interface crashes on start

The area at stake (where invalid write occurs) is provided by a XGetImage X11 call for retrieving a stored pixmap. (modules/gui/skins2/x11/x11_graphics.cpp:192) For an unknown reason, this call doesn't provide what is expected if a KVM is used. On the vlc side, code could probably be strengthened (m...
by erwan10
21 Sep 2010 14:01
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Multitrack video
Replies: 1
Views: 585

Re: Multitrack video

A long-standing design issue with hotkeys, and unfortunately nothing the user can really do to work around it. As it is done today, hotkeys are never tied to any video window or widget. vlc core only gets informed that a hotkey has been pressed. No information is transmitted about the context such a...
by erwan10
19 Sep 2010 11:12
Forum: Skins
Topic: Random crashes when using skins
Replies: 4
Views: 1396

a gdi resource leak has just been reported and fixed in the skin engine on the Windows port. This issue could indeed lead to a freeze after using vlc for a few hours. The fix was applied in both the vlc1.1 and vlc1.2 branches. It would be a good thing if you could test it with a nightly build (for i...
by erwan10
16 Sep 2010 09:19
Forum: Skins
Topic: Artifacts on fullscreen interface
Replies: 2
Views: 1645

Re: Artifacts on fullscreen interface

it seems to depend on the Windows version. From what I recall, the default skin doesn't show any such problem on WindowsXP.

Anyway, it is worth filling a bug report on this issue.
by erwan10
14 Sep 2010 11:20
Forum: Development around libVLC
Topic: simulating hotkeys press
Replies: 6
Views: 804

Re: simulating hotkeys press

It's not a bug per se, but a well known limitation :( The hotkeys subsytem was never updated to take the libvlc specific design into account. In more technical words, the input is still inferred from the playlist (which is not used in libvlc), and vout/aout are inferred from this inexistent input. S...
by erwan10
14 Sep 2010 09:43
Forum: Development around libVLC
Topic: Logo using libvlc 1.1.4 doesn't work?
Replies: 2
Views: 1110

Re: Logo using libvlc 1.1.4 doesn't work?

Several conditions must be met so that logo (or marquee) functions work fine. - The media player must be playing. - The internal vout thread must already be spawned. If you experiment problems, just add for instance a 'sleep(10)' before issuing these logos functions. If that works out the problem, i...
by erwan10
13 Sep 2010 14:28
Forum: Development around libVLC
Topic: In which module the Scaling is happening?
Replies: 5
Views: 1160

Re: In which module the Scaling is happening?

As said earlier, in modern PC, scaling occurs at the hardware level (GPU), not at the vlc level. If you choose to deactivate this GPU extra capability (--vout parameter set for instance to gdi (Windows) or xcb_x11(Linux)), then vlc does use sofware scaling from the libswscale library. (see ffmpeg pr...
by erwan10
12 Sep 2010 10:52
Forum: VLC media player Feature Requests
Topic: aspect ratio to fit the screen full screen
Replies: 5
Views: 5129

Re: aspect ratio to fit the screen full screen

In fullscreen mode, vlc does scale to fit the entire screen by default. But, of course, it does it while preserving the original aspect ratio, so that the image is not distorted. That's why black borders are often seen. If you want black borders to be removed, there is no miracle. Image must be crop...
by erwan10
12 Sep 2010 10:05
Forum: VLC media player for Windows Troubleshooting
Topic: DVDs exit and reenter fullscreen mode constantly
Replies: 7
Views: 690

Re: DVDs exit and reenter fullscreen mode constantly

This problem most probably falls into the well known limitation of what is referred to as 'vout reuse' DVD often consists of smaller parts back to back. vlc will try to be as seamless as possible, but two successive parts must meet the following conditions : same width, same height, same chroma. For...
by erwan10
10 Sep 2010 16:56
Forum: Development around libVLC
Topic: Possible to display multiple marquees or logos?
Replies: 2
Views: 980

Re: Possible to display multiple marquees or logos?

If it were to be done with the basic vlc program, the answer is yes something along this line works very fine: vlc --sub-filter "marq{marquee=Text1,x=10,y=10}:marq{marquee=Text2,x=500,y=500}:marq{marquee=Text3,position=10}" In other words, you can chain as many filters as you like (separat...
by erwan10
08 Sep 2010 12:15
Forum: Skins
Topic: VLC Skinnable Interface : Panel Z-Order ?
Replies: 4
Views: 1985

Re: VLC Skinnable Interface : Panel Z-Order ?

Can I somehow have the text and move on the toppanel ?
Only image controls can be used to move or resize a window. Text control cannot.

If you want some text, you can hardcode it in a png image. Only problem is that it can't be dynamic ( no $T :( )
by erwan10
08 Sep 2010 11:59
Forum: Skins
Topic: Slick Iphone Skin (Update 1.4) Full Screen Controls
Replies: 31
Views: 15686

Re: Slick Iphone Skin (Update 1.4) Full Screen Controls

There is no support for partial transparency yet so I can't do much about it! Why not have a fully opaque button ? I figure out parts of the bitmap are transparent in one way or another (either the png file has some parts set to alpha = 0 or a given color is set via the 'alphacolor' tag to represen...
by erwan10
03 Aug 2010 22:48
Forum: Skins
Topic: Missing Actions?
Replies: 5
Views: 1980

Re: Missing Actions?

For DVDs, with skins I can't find anyway to navigate the menus except via a mouse. There is no dvd.up() or dvd.right() nor a dvd.activate() that i can find. Everything skins offers w.r.t dvd is described on the web site you mention. No extra undocumented dvd features, I fear. dvd.nextTitle(): Go to...
by erwan10
03 Aug 2010 11:29
Forum: Web and scripting
Topic: 1.1.1 - Aspect Ratio bug with Mozilla plugin and DVB-T
Replies: 4
Views: 926

Re: 1.1.1 - Aspect Ratio bug with Mozilla plugin and DVB-T

Are you using Mozilla on Linux or Windows ?

From a quick look at the source code, this problem described in the trac system should only occur on the Linux port.
by erwan10
02 Aug 2010 13:27
Forum: VLC media player for Windows Troubleshooting
Topic: Keep Getting Error Messages
Replies: 5
Views: 419

Re: Keep Getting Error Messages

It is indeed a skin with missing files.

The annoying dialog boxes have just been deactivated. You can use either vlc1.2.0 or vlc1.1.2, since the fix has been backported.

Those errors will still appear in the log, since those are real errors, that should be reported to the skin developper.
by erwan10
02 Aug 2010 00:03
Forum: VLC media player for Linux and friends Troubleshooting
Topic: KWin does not generate window shadows for VLC 2
Replies: 3
Views: 532

Re: KWin does not generate window shadows for VLC 2

Windows Managers can display any X11 applications, but applications can provide more or less additional information to help the WM take the right decision (either through the use of the EWMH spec or even legacy properties). Qt4 applications and KDE applications provide built-in properties or feature...
by erwan10
26 Jul 2010 11:23
Forum: VLC media player for Windows Troubleshooting
Topic: Where do recordings go?
Replies: 2
Views: 39766

Re: Where do recordings go?

By default, recorded material go to "My Video" or "My Music" (depending on whether a video track is detected or not). Once you stop recording, the recorded file is available right away for replay in these directories. In addition, they can be accessed through the vlc playlist dia...
by erwan10
25 Jul 2010 23:54
Forum: VLC media player for Windows Troubleshooting
Topic: Can VLC player resize video in full screen mode?
Replies: 2
Views: 3976

Re: Can VLC player resize video in full screen mode?

What about the 'o' hotkey to toggle to original size in fulscreen mode, then alt-'o' and alt-shift-'o' to increase/decrease the size of the image (by a 10% step). Zooming spans from .2x to 10x

Erwan10
by erwan10
19 Jul 2010 22:54
Forum: Skins
Topic: VLC crashes upon exiting form full screen
Replies: 21
Views: 11053

Re: VLC crashes upon exiting form full screen

Well, I'm afraid setting up a dev environment on Windows is not that easy. Personally, vlc debug versions for Windows (found on nightly build website) never worked as expected with my config (WinXP and gdb). I need to recompile the whole vlc with some additional compil options found on the web, in o...
by erwan10
19 Jul 2010 15:13
Forum: Skins
Topic: VLC crashes upon exiting form full screen
Replies: 21
Views: 11053

Re: VLC crashes upon exiting form full screen

Okay, I never waited for so long in my tests. But, till a stack backtrace is available, it is very difficult to debug.
by erwan10
19 Jul 2010 09:14
Forum: Skins
Topic: VLC crashes upon exiting form full screen
Replies: 21
Views: 11053

Re: VLC crashes upon exiting form full screen

A nightly build is now available (http://nightlies.videolan.org/build/win ... 0719-0202/) for test. Let's see what you get with this new update.

The log doesn't show anything wrong.
by erwan10
18 Jul 2010 23:10
Forum: Skins
Topic: VLC crashes upon exiting form full screen
Replies: 21
Views: 11053

Re: VLC crashes upon exiting form full screen

I've tested fullscreen quite a bit on both WinXP and Linux. I do agree there is a fullscreen issue (black screen that cannot be easily removed). But, no crash so far. Anyway, I'm just about to commit a fix for this annoying fullscreen problem. You should be able to try it with a nightly build as soo...

Go to advanced search