Kodi Community Forum
Modification help needed for TvTunes - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Aeon MQ (https://forum.kodi.tv/forumdisplay.php?fid=68)
+---- Thread: Modification help needed for TvTunes (/showthread.php?tid=277273)

Pages: 1 2


Modification help needed for TvTunes - VikkiXavier - 2016-05-28

The video theme in PosterLite view appears like this...

Image

I want it to appear like this...

Image

I want the video to be sliding out from behind the poster and to play behind the genre and plot details bar.I went through the ViewsPosterLite.xml file, but to no avail. Pure novice at it. Can someone please help me out with this thing?


RE: Modification help needed for TvTunes - VikkiXavier - 2016-05-28

Can anyone at least tell me which xml file I will have to edit? Is ViewsPosterLite the correct one?


RE: Modification help needed for TvTunes - VikkiXavier - 2016-05-28

In Aeon MQ6 only posterlite displays video themes. But, thankfully, I like this view.


RE: Modification help needed for TvTunes - VikkiXavier - 2016-05-30

bump


RE: Modification help needed for TvTunes - Mike_Doc - 2016-05-30

which skin / mod exactly do you want to do this in?


RE: Modification help needed for TvTunes - VikkiXavier - 2016-05-31

SKIN: AEON MQ6.

VIEW: POSTERLITE

"I want the video to be sliding out from behind the poster and to play behind the genre and plot details bar"


RE: Modification help needed for TvTunes - Angelinas - 2016-05-31

Not all TVTunes video have 16x9,some time have 4x3...and there is problem to see video.

Image

And trailer when you play in view list are also with other resolution, can fit in that space.....

Image

Suggestion to you:
Create videowindow in MyVideoNav.xml
add visible condition in what view want to show,remove in all view "videowindow" (dont duplicate video) and that its..Smile
Code:
        <control type="videowindow">
            <left>420</left>
            <top>0</top>
            <width>890</width>
            <height>460</height>
            <visible>Control.IsVisible(69)</visible>
        </control>



RE: Modification help needed for TvTunes - VikkiXavier - 2016-05-31

@Angelinas - thnx a lot for the help, mate. Can you please tell me why video themes are not being displayed in other views like Showcase, Right List, etc? it only works in Posterlite. How to make it work in showcase view?


RE: Modification help needed for TvTunes - Mike_Doc - 2016-05-31

Angelinas beat me to it, thanks buddy.

Each view has to have a videowindow command like Angelinas has shown you, I guess posterlite already has it either in Myvideonav.xml or the xml for the view itself?. You would need to id all the view id's (posterlitle seems to be 69) and then add them all into Myvideonav.xml with the different positions / dimensions and correct id in the Control.IsVisible, then you should get them in the other views.

But Angelinas did say you'd need to remove all view "videowindow", so you either leave as is and put the videowindow in each view or remove them and build them all into Myvideonav.xml


RE: Modification help needed for TvTunes - VikkiXavier - 2016-06-02

Thanks for the help guys, but it isn't working. Been trying since yesterday. Now I am using showcase view, the ID of which is 66. So I replaced 69 with 66 after copying the entire code Angelinas kindly shared with me to 'ViewShowCase.xml'. Also tried doing the same in MyVideNav.xml. Still it doesn't work. The video is not showing up. I can just hear the audio.


RE: Modification help needed for TvTunes - VikkiXavier - 2016-06-02

OMG OMG OMG!! It works! Figured it out. Thanks a ton guys. Love you both <3 Big Grin


RE: Modification help needed for TvTunes - VikkiXavier - 2016-06-02

It appears like this thanks to u guys.. Now, is it possible to make the fanart a bit blurred while the video is playing?

Image

Image


RE: Modification help needed for TvTunes - ziggy231 - 2016-06-02

Hi guys, I am using AEON MQ5 at the moment and I am trying to get my trailers that I have added to my movies folder to play in the fanart screen, but all my trailers play only in the background on the whole screen, is there a way that I can get the trailers to play in the fanart box or a small box like above ?

Many thanks

Ziggy


RE: Modification help needed for TvTunes - VikkiXavier - 2016-06-03

@Ziggy - which view r u using?


RE: Modification help needed for TvTunes - VikkiXavier - 2016-06-03

If you're using showcase view like I am using, then add this to the MyVideoNav.xml file:

<control type="videowindow">
<left>224</left>
<top>26</top>
<width>832</width>
<height>468</height>
<visible>Control.IsVisible(66)</visible>
</control>