Search found 415 matches

Go to advanced search

by erwan10
30 Jul 2020 22:47
Forum: Skins
Topic: Skin Editor Question
Replies: 2
Views: 5123

Re: Skin Editor Question

From what I recall, this A-B repeat functionality has never been available for the skins2 interface module. And there is no easy way to work around this missing functionality as a skin developer.
by erwan10
19 Feb 2020 14:56
Forum: Skins
Topic: Do animated bitmaps only work on buttons and not checkboxes?
Replies: 1
Views: 1751

Re: Do animated bitmaps only work on buttons and not checkboxes?

You should be able to use animated images with both the 'Button' and the 'Checkbox' tags. Please copy/paste the code that is not working to help figure out what is wrong.
by erwan10
22 Sep 2019 11:48
Forum: Skins
Topic: Looking for help with a skin.
Replies: 1
Views: 1605

Re: Looking for help with a skin.

The designer has offsetted the bottom panel by 1 pixel vertically. So this extra line is part of the design. But, I suspect this was not intended. So I just corrected the theme.xml description to remove this line. You can download the corrected skin here : https://www.dropbox.com/s/gewgxce5qx2x4dg/A...
by erwan10
20 May 2018 21:59
Forum: Skins
Topic: VLC SKINS WONT LET ME FULL SCREEN ON 4K
Replies: 1
Views: 1324

Re: VLC SKINS WONT LET ME FULL SCREEN ON 4K

Which OS (Linux or Windows) do you use ? which version ?

Anyway, I guess this may be related to HiDPI which is not implemented by the skin engine.
by erwan10
27 Feb 2018 23:56
Forum: Skins
Topic: Action for previous frame button
Replies: 3
Views: 1367

Re: Action for previous frame button

To my knowledge, at the core level, vlc only supports next frame, not previous frame. So, no button available for this feature.
by erwan10
27 Feb 2018 23:52
Forum: Skins
Topic: Need help with album art for skin
Replies: 1
Views: 1148

Re: Need help with album art for skin

I have got a modified version of this skin with art enabled. You can get it via the dropbox link :
https://www.dropbox.com/s/ik6z4ofqagp38 ... 3.vlt?dl=0
by erwan10
18 Feb 2018 21:08
Forum: Skins
Topic: VLC V3.0 Skin causing very slow loading and error
Replies: 3
Views: 3854

Re: VLC V3.0 Skin causing very slow loading and error

All skins should work with vlc3.0 the way they used to work in previous version. I did notice that loading a skin may be a bit longer. That has to be investigated.
by erwan10
12 Feb 2018 14:35
Forum: Skins
Topic: Video in the VLC skin and on the external screen...
Replies: 5
Views: 1608

Re: Video in the VLC skin and on the external screen...

You mean video filter versus video splitter. The former applies video filters to a given video output. The latter splits the video output into multiple outputs. The clone filter falls in the category of video splitters. As for skins, I was a bit too optimistic. The latest vlc I just tested now force...
by erwan10
10 Feb 2018 03:19
Forum: Skins
Topic: Korean letters unreadable on a skin downloaded from the skin website
Replies: 3
Views: 2130

Re: Korean letters unreadable on a skin downloaded from the skin website

Hello, This is a problem. Skin developers choose whatever fonts (.ttf, .otf, ...) they like best. But, those files don't necessarily have entries for all languages. The default skin uses the default font for the main window. The file is FreeSans.ttf. It works for Japanese but not for Korean. An easy...
by erwan10
09 Feb 2018 13:23
Forum: Skins
Topic: Video in the VLC skin and on the external screen...
Replies: 5
Views: 1608

Re: Video in the VLC skin and on the external screen...

Hello, Technically, this should work. At the core level, you have the clone video filter that create multiple outputs of a given video. At the skin level, you can devise a skin with multiple video controls in multiple windows and place these windows on any monitor independently. Yet, there may be so...
by erwan10
15 Dec 2017 21:04
Forum: Skins
Topic: Skins limiting function
Replies: 1
Views: 1257

Re: Skins limiting function

Hi, I'm not sure what shrunk down means here. Actually, the video within skins are a lot what designers decided it to be. They can implement or not resizing, hiding, maximizing, fullscreen in a single window or multiple windows. As for key accelerators (the Ctrl-something that you find advertized in...
by erwan10
07 Apr 2017 14:15
Forum: Skins
Topic: Removing right click menu from Linux skin
Replies: 5
Views: 1779

Re: Removing right click menu from Linux skin

Can you give me an example on how to block the Qt module? There is no way to block the Qt module and still use the skin engine in the current version. But, as I said, it should be easy to write a patch that makes the Qt module optional and therefore allows to disable all popupmenus, key accelerator...
by erwan10
06 Apr 2017 20:50
Forum: Skins
Topic: Removing right click menu from Linux skin
Replies: 5
Views: 1779

Re: Removing right click menu from Linux skin

Well, actually the easiest way to meet these requirements is indeed to remove the dependance on the Qt module. The only reason why the Qt module is launched by the skin engine is to provide popup menus, key accelerators and dialog boxes (preferences, message log, ....). No Qt module and you just dis...
by erwan10
16 Oct 2016 02:57
Forum: Skins
Topic: Winamp Modern Skin doesn't work with video?
Replies: 4
Views: 8979

Re: Winamp Modern Skin doesn't work with video?

Most likely, no video frames were provisioned for this skin when it was designed. So the video part is just kept hidden in non-fullscreen mode. The easy way to work around this problem is launch vlc with the --no-embedded-video parameter, or uncheck the "Embedded video" checkbox in Prefere...
by erwan10
28 Jan 2016 22:59
Forum: Skins
Topic: Fullscreen problem on extended screens
Replies: 3
Views: 5806

Re: Fullscreen problem on extended screens

A patch has just been applied in the dev branch that fixes the issue. Tested successfully with Windows10. A nightly build can usually be downloaded the next day, but unfortunately, new nightly builds haven't been issued for the last few weeks .... The fix will be available with the vlc3.0.0 branch o...
by erwan10
27 Jan 2016 16:35
Forum: Skins
Topic: Fullscreen problem on extended screens
Replies: 3
Views: 5806

Re: Fullscreen problem on extended screens

This feature is not implemented in the skin engine.
Unlike fullscreen that now supports mulitple screens, maximising a window is still very basic and the main screen is hardcoded as being the targeted screen.
Yet, it should be easy to code this new feature, since it already exists for fullscreen.
by erwan10
25 Jan 2016 12:40
Forum: Skins
Topic: Animations
Replies: 12
Views: 7336

Re: Animations

No nomenclature. the only prerequisite is to ensure ids are unique throughout the project. Otherwise, from what I recall, the skin engine doesn't complain very much. At run time, a lookup will always return the first id available. Subsequent ids with the same value will just never be accessible. Odd...
by erwan10
25 Jan 2016 11:33
Forum: Skins
Topic: Animations
Replies: 12
Views: 7336

Re: Animations

<Bitmap id="player.vfd.png" file="wave/playani.png" alphacolor="#000000"> <SubBitmap id="play.vfd.png" x="0" y="0" height="40" width="151" nbframes="8" fps="2"/> </Bitmap> Another mistake, id Must al...
by erwan10
25 Jan 2016 11:10
Forum: Skins
Topic: Animations
Replies: 12
Views: 7336

Re: Animations

Oops ... In fact, I was referring to subbitmaps. if you have one single png file image, let's say the aforementioned 10x200 png file, then width and height are automatically computed. So you just have to write : <Bitmap id="play.vfd.png" file="wave/playani.png" nbframes="20&...
by erwan10
25 Jan 2016 10:26
Forum: Skins
Topic: Animations
Replies: 12
Views: 7336

Re: Animations

That how I understand it, Height divided by nbframes. Not sure how to construe this last sentence ! Let's take an example. Suppose your frame is a 10x10 square, you've got 20 frames and you play 2 frames per second, then you provide a 10 x 200 png image (frames stored vertically) and eventually you...
by erwan10
08 Sep 2015 15:06
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Custom Skin Not Working with Gnome 3.14.1
Replies: 2
Views: 683

Re: Custom Skin Not Working with Gnome 3.14.1

A fix has just been applied that fixes the issue described in this thread (tested successfully with Unity and Gnome3)

This fix will be available in the next version of the 2.2 branch.
by erwan10
07 Sep 2015 11:59
Forum: VLC media player for Linux and friends Troubleshooting
Topic: Custom Skin Not Working with Gnome 3.14.1
Replies: 2
Views: 683

Re: Custom Skin Not Working with Gnome 3.14.1

The short answer would be to file a bug report (with thorough description of the Window Manager brand and version as you did here) The long answer is that, from an application perspective in a X11 environment, requesting full screen is done via the ICCCM standard. And, in last resort, the Window Man...
by erwan10
17 Jun 2015 13:54
Forum: Skins
Topic: Applying Skin Causes Crash
Replies: 1
Views: 4292

Re: Applying Skin Causes Crash

two problems seen #1: the only valid name for the skin description file is theme.xml (Persona4_Style.xml is not a valid name !) #2: check the slider with id="Unnamed Slider #33". The image cannot be set to "none" in this context. A valid image has to be provided. Otherwise, skins...
by erwan10
06 May 2015 20:59
Forum: Skins
Topic: Video frame dissapears after VLC 2.2 Update
Replies: 4
Views: 6009

Re: Video frame dissapears after VLC 2.2 Update

Yes, vlc2.2.1 is the official current release and it still have the bugs that you described. Only the upcoming vlc2.2.2 (not yet released) should fix these bugs. If you wish to test it, vlc2.2.2 is rebuilt every night and can be downloaded for instance here : http://nightlies.videolan.org/build/win3...
by erwan10
28 Apr 2015 16:58
Forum: Skins
Topic: Video frame dissapears after VLC 2.2 Update
Replies: 4
Views: 6009

Re: Video frame dissapears after VLC 2.2 Update

Hello, The skins you provided did show two issues. Both of them are bugs. First issue, a wrong video control may be selected when vlc.hasVout() is used in the condition expression for visibility. This bug was already present in vlc2.1. I guess that is why you removed the 'and' keyword before vlc.has...

Go to advanced search