XBMC Community Forum
[MOD] Multiplex View with Video Window Mod - Printable Version

+- XBMC Community Forum (http://forum.xbmc.org)
+-- Forum: Help and Support (/forumdisplay.php?fid=33)
+--- Forum: Skin Help and Support (/forumdisplay.php?fid=67)
+---- Forum: Aeon (/forumdisplay.php?fid=68)
+---- Thread: [MOD] Multiplex View with Video Window Mod (/showthread.php?tid=49915)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43


- henrikyo - 2009-05-18 23:44

anoobie Wrote:hi, find this in mutliplexview.xml

Code:
            <control type="group">
                <posx>612</posx>
                <posy>18</posy>
                <visible>Skin.HasSetting(multiplexfanart)</visible>                
                <control type="image">
                    <posx>0</posx>
                    <posy>0</posy>
                    <width>617</width>
                    <height>351</height>
                    <texture>common/black.png</texture>
                    <colordiffuse>94FFFFFF</colordiffuse>
                    <animation effect="fade" start="50" end="50" time="0" condition="!Skin.HasSetting(darkmultiplex)">Conditional</animation>                    
                </control>                
                <control type="largeimage">
                    <posx>2</posx>
                    <posy>2</posy>
                    <width>613</width>
                    <height>347</height>
                    <aspectratio>scale</aspectratio>
                    <fadetime>400</fadetime>
                    <texture>$INFO[Container(52).listitem.property(fanart_image)]</texture>
                </control>

and add this right below it

Code:
<control type="videowindow" id="2">
                      <posx>2</posx>
                      <posy>2</posy>
                      <width>613</width>
                      <height>347</height>    
                 </control>

then find this
Code:
<ondown>60</ondown>

and change it to
Code:
<ondown>PlayMedia($INFO[ListItem.Trailer],1)</ondown>

thx for your answer mate, tried your above tweaks, but didnt work. When i startup xbmc it starts in showcase view and when trying to select multiplex it goes to wall view.

Strange Confused


- andyblac - 2009-05-19 01:17

andyblac Wrote:hi,
im trying to tweak this mod to work with TV shows, is they anyway the start playing the selected episode minimized (like the trailer does), with tweaking this command:
Code:
<ondown>PlayMedia($INFO[ListItem.Trailer],1)</ondown>

i have tried:
Code:
<ondown>PlayMedia($INFO[listitem.filenameandpath],1)</ondown>
but it does not work, hope someone can help, i have got it so when i play the episode and press tab (fulscreen switch) it show's in my multiplex view, i just need to start the file minimized with the down key.

OK found a command line that works, but now i need more help. here's the command that will play the episode minimized
Code:
<ondown>PlayMedia($INFO[listitem.path]$INFO[listitem.filename],1)</ondown>

but i can't have 2 <ondown> statements, is there away to control when each ondown should be active ?

hope someone can help Smile


- Cyrilys - 2009-05-19 12:11

I would like to know where is the command line to change the color of title in the file Viewtype_Multiplex?


- Tarlak - 2009-05-19 20:29

Hi,

I try to use the mod 1 with the trailer.

I've got this movie : American Gangster sddvd.mkv
So i put the trailer like this : American Gangster sddvd-trailer.avi

And in the new multiplex view i don't see the trailer, may i miss something ?


- rflores2323 - 2009-05-19 22:00

how do you get the episode names in the tv view with this xml? I see there are other xml with the mod however I like this mod and want to use it. I want the thumb to show episode 1, episode 2, etc.. in the tv show multiplex view.


- anoobie - 2009-05-19 23:25

Ayla Wrote:anoobie or somebody else;

I want to use this MOD, but:

all my fanart is named [moviename]-fanart.jpg but it isn't scraped into my XBMC database because Plex has this disabled.

Is there any way that I can show the fanart when the trailer isn't playing?

I know that you can point to a filename in the fanart path, for example: fanart.jpg - but can I do the same with a "dynamic" name like [moviename]-fanart.jpg ?

Thanks Smile

sorry I don't have a solution. Only thing I could think of is putting fanart in a separate folder and do a slideshow of that folder with just the fanart in it. But if you're gonna do that might as well just change the name to fanart.jpg.


- anoobie - 2009-05-19 23:30

henrikyo Wrote:thx for your answer mate, tried your above tweaks, but didnt work. When i startup xbmc it starts in showcase view and when trying to select multiplex it goes to wall view.

Strange Confused

you probably didn't insert it between the </control>.

Code:
<fadetime>400</fadetime><texture>$INFO[Container(52).listitem.property(fanart_image)]</texture>
</control>

[b]Insert Here[/b]

</control>



- anoobie - 2009-05-19 23:34

andyblac Wrote:OK found a command line that works, but now i need more help. here's the command that will play the episode minimized
Code:
<ondown>PlayMedia($INFO[listitem.path]$INFO[listitem.filename],1)</ondown>

but i can't have 2 <ondown> statements, is there away to control when each ondown should be active ?

hope someone can help Smile

Try putting this
Code:
<include name="Trailer">
        <ondown>PlayMedia($INFO[ListItem.Trailer],1)</ondown>
    </include>
    
    <include name="TVshow">
        <ondown>PlayMedia($INFO[listitem.path]$INFO[listitem.filename],1)</ondown>
    </include>
above
Code:
<include name="Viewtype_Multiplex">

then replace
Code:
<ondown>PlayMedia($INFO[ListItem.Trailer],1)</ondown>

with
Code:
<include condition="Skin.HasSetting(videomovies)">Trailer</include>
            <include condition="Skin.HasSetting(videotv)">TVshow</include>



- anoobie - 2009-05-19 23:36

Cyrilys Wrote:I would like to know where is the command line to change the color of title in the file Viewtype_Multiplex?

look for this
Code:
<include name="MultiplexLabelsMovies">
        <control type="group">
            <visible>Container.Content(movies)</visible>
            <control type="label">
                <posx>20</posx>
                <posy>450</posy>
                <width>890</width>
                <height>71</height>
                <scroll>true</scroll>
                <aligny>center</aligny>
                <align>center</align>
                <font>Font_MultiplexMainLabel</font>
                <label>$INFO[Container(52).ListItem.Label]</label>
                <visible>!Skin.HasSetting(nomediaflags)</visible>
                <include>Animation_HideMultiplex</include>            
            </control>

and insert <textcolor></textcolor> in there


- anoobie - 2009-05-19 23:37

Tarlak Wrote:Hi,

I try to use the mod 1 with the trailer.

I've got this movie : American Gangster sddvd.mkv
So i put the trailer like this : American Gangster sddvd-trailer.avi

And in the new multiplex view i don't see the trailer, may i miss something ?

did you reload the movie. Press 'i' then reload?