Android I need to put a logo on top of video (overlay)
#1
Hey guys!

I wanted to give to some of my movies a nostalgic little touch by placing a logo on top of them, for example the HBO Olé logo.

So, I learned that this is some how possible to do in kodi/XBMC by inserting some piece of code and found that someone has already done it, please check this video:
[MEDIA=youtube]id=xK-pelKClZ4;t=22[/MEDIA]

The code to achieve this is the following (inside VideoFullScreen.xml):

Quote:<control>
<description>logo overlay</description>
<type>image</type>
<id>2</id>
<posx>50</posx>
<posy>50</posy>
<width>100</width>
<height>100</height>
<texture>overlay_logo.png</texture>
<aspectratio>keep</aspectratio>
<visible>Skin.HasSetting(logo)</visible>
<animation effect="fade" time="500">WindowOpen</animation>
<animation effect="fade" time="500">VisibleChange</animation>
</control>

And the following in Keymap:

Quote:<five>Skin.ToggleSetting(logo)</five>

So far so good, the problem is that I don't know where to find "VideoFullScreen.xml" and where to place the .PNG with the logo :cry: I'm on Android / 15.3

If you have any other idea about how to do it, I'll be happy to read it!

Any help will be appreciated Smile

The topic where I got the code and info: http://forum.kodi.tv/showthread.php?tid=21337&page=3
Reply

Logout Mark Read Team Forum Stats Members Help
I need to put a logo on top of video (overlay)0