Kodi Community Forum
XBMC Intro Movie - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Discussions (https://forum.kodi.tv/forumdisplay.php?fid=222)
+--- Forum: Kodi related discussions (https://forum.kodi.tv/forumdisplay.php?fid=6)
+--- Thread: XBMC Intro Movie (/showthread.php?tid=124124)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13


- ronie - 2012-03-11

rudawgr Wrote:this is so confusing im traying to make this work but i have no luck!!! can some one explain in plaint english how to set this up pleasee...ok this is what i did i copy this line
<onload condition="Window.Previous(startup)">XBMC.PlayMedia(special://skin/introMovie.mov)</onload> to xbmc/addon/skin.confluence/720
but have no luck getting it to work...also once i put that line do i have to go to program and change something under xbmc intro movie?...please someone write step by step on how to do this on the atv2 please
thanks

put your movie here:
xbmc/addons/skin.confluence/introMovie.mov

add this line to xbmc/addon/skin.confluence/720p/Startup.xml:
Code:
<window>
    <onload>PlayMedia(special://skin/introMovie.mov)</onload>



- rudawgr - 2012-03-11

ronie Wrote:put your movie here:
xbmc/addons/skin.confluence/introMovie.mov

add this line to xbmc/addon/skin.confluence/720p/Startup.xml:
Code:
<window>
    [b]<onload>PlayMedia(special://skin/introMovie.mov)</onload>[/b]

ok so you are telling me that i need to add or create a folder call introMovie.mov to what ever skin im trying to set up...once i add the folder i need to drop my movies intro in there..Second i need to add this line <onload>PlayMedia(special://skin/introMovie.mov)</onload> to the startup.xml

cool question where do i get the intro movies?


Help - rudawgr - 2012-03-11

Thank you ronie but nothing is working maybe if someone could make a video on how to set this up it would be much better I'm not traying to be a paint in the @$) but I'm getting frustrated here and nothing is working for me I have a atv2 and also windows if some one could make a video I would be grate...thank you guys


- PatK - 2012-03-11

eeps...

put your movie here:
xbmc/addons/skin.confluence/introMovie.mov

Means to put your video into the folder 'skin.confluence' NOT a sub folder.....if you're unsure put it in more than one spot...

With the name 'introMovie.mov'

edit the Startup.xml using cut&paste techniques....


RE: XBMC Intro Movie - rudawgr - 2012-03-12

Thank patk and ronie I finally got it to work. One question said I have multiple intro video and I want to romdenly play a video everytime I open xbmc how I do that? I now there is a script for glass skin but there I code to make it work for other skins?


RE: XBMC Intro Movie - DDDamian - 2012-03-12

(2012-03-12, 20:48)rudawgr Wrote: Thank patk and ronie I finally got it to work. One question said I have multiple intro video and I want to romdenly play a video everytime I open xbmc how I do that? I now there is a script for glass skin but there I code to make it work for other skins?

That would take some coding in the XBMC source.


RE: XBMC Intro Movie - htpc guy - 2012-03-12

Not source but xbmc skin. There is an addon in the passion report that will let you play a random intro but only glass supports it.


RE: XBMC Intro Movie - DDDamian - 2012-03-12

(2012-03-12, 22:04)htpc guy Wrote: Not source but xbmc skin. There is an addon in the passion report that will let you play a random intro but only glass supports it.

Yeah, the skin can do it, but I think there's some timing issues as the main code is launching and may display other things first. That's where you'd need to modify the main program, Things happen simulataneously.


RE: XBMC Intro Movie - Ned Scott - 2012-03-13

So who wants to make an XBMC Wiki page that lists all these kick ass intro movies and maybe a little how-to on making them work?


RE: - matt77303 - 2012-03-14

(2012-03-11, 06:00)ronie Wrote:
rudawgr Wrote:this is so confusing im traying to make this work but i have no luck!!! can some one explain in plaint english how to set this up pleasee...ok this is what i did i copy this line
<onload condition="Window.Previous(startup)">XBMC.PlayMedia(special://skin/introMovie.mov)</onload> to xbmc/addon/skin.confluence/720
but have no luck getting it to work...also once i put that line do i have to go to program and change something under xbmc intro movie?...please someone write step by step on how to do this on the atv2 please
thanks

put your movie here:
xbmc/addons/skin.confluence/introMovie.mov

add this line to xbmc/addon/skin.confluence/720p/Startup.xml:
Code:
<window>
    [b]<onload>PlayMedia(special://skin/introMovie.mov)</onload>[/b]

does it matter where it goes in the startup.xml?

matt


RE: - ronie - 2012-03-14

(2012-03-14, 17:35)matt77303 Wrote:
(2012-03-11, 06:00)ronie Wrote: add this line to xbmc/addon/skin.confluence/720p/Startup.xml:
Code:
<window>
    <onload>PlayMedia(special://skin/introMovie.mov)</onload>

does it matter where it goes in the startup.xml?

matt

yes, put it on the second line, right below <window>,
so it's started before anything else.


RE: XBMC Intro Movie - matt77303 - 2012-03-14

Thanks mate.

working ok now, could never get it to work before.

i can see the menu for about a second before it plays any way round that?

Matt


RE: XBMC Intro Movie - ronie - 2012-03-14

(2012-03-14, 19:40)matt77303 Wrote: Thanks mate.

working ok now, could never get it to work before.

i can see the menu for about a second before it plays any way round that?

Matt
here's a minimal Startup.xml for Confluence that will delay the loading of the home screen by 1 second.
you can adjust the value (it's in milliseconds) of the delay to your own liking.

Code:
<window>
    <onload>PlayMedia(special://skin/introMovie.mov)</onload>
    <defaultcontrol always="true">10</defaultcontrol>
    <allowoverlay>no</allowoverlay>
    <controls>
        <control type="button" id="10">
            <onfocus>ReplaceWindow(Home)</onfocus>
            <texturenofocus>-</texturenofocus>
            <texturefocus>-</texturefocus>
            <animation effect="fade" delay="1000" end="100">Focus</animation>
        </control>
    </controls>
</window>



RE: XBMC Intro Movie - DDDamian - 2012-03-14

Excellent ronie - beats changes to source to avoid this issue Wink


RE: - GeezerJT - 2012-03-15

(2012-03-04, 15:31)deanmv Wrote:
GeezerJT Wrote:Where can i get the file? that looks great

Clipconverter.cc

Sorry i dont understand what i am supposed to do with that?