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


RE: - Ned Scott - 2012-03-15

(2012-03-15, 05:36)GeezerJT Wrote:
(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?

Type it into your browser :)

http://Clipconverter.cc


RE: XBMC Intro Movie - GeezerJT - 2012-03-15

and then what am i supposed to do with it? i dont understand the instructions on the first post.


RE: XBMC Intro Movie - deanmv - 2012-03-16

That link is a youtube "ripper:, it will grab the video file off the link that was in http://forum.xbmc.org/showthread.php?tid=124124&pid=1036085#pid1036085 which you said you wanted to get.

Or if you have the video then what bit are you stuck at? The instructions seem pretty straight forward but where have you got to so far?

Just a quick side note is stuff like that allowed from a your stealing stuff of youtube/privacy point of view?


RE: XBMC Intro Movie - GeezerJT - 2012-03-16

(2012-03-16, 00:27)deanmv Wrote: That link is a youtube "ripper:, it will grab the video file off the link that was in http://forum.xbmc.org/showthread.php?tid=124124&pid=1036085#pid1036085 which you said you wanted to get.

Or if you have the video then what bit are you stuck at? The instructions seem pretty straight forward but where have you got to so far?

Just a quick side note is stuff like that allowed from a your stealing stuff of youtube/privacy point of view?

Thanks for the reply, i would be stuck at the veryfirst bit. Where do i find the Advancedsettings.xml ?




RE: XBMC Intro Movie - deanmv - 2012-03-16

(2012-03-16, 00:51)GeezerJT Wrote:
(2012-03-16, 00:27)deanmv Wrote: That link is a youtube "ripper:, it will grab the video file off the link that was in http://forum.xbmc.org/showthread.php?tid=124124&pid=1036085#pid1036085 which you said you wanted to get.

Or if you have the video then what bit are you stuck at? The instructions seem pretty straight forward but where have you got to so far?

Just a quick side note is stuff like that allowed from a your stealing stuff of youtube/privacy point of view?

Thanks for the reply, i would be stuck at the veryfirst bit. Where do i find the Advancedsettings.xml ?
Depends on the system you are using. Also it might it might not exist yet as it is a user created file:
http://wiki.xbmc.org/index.php?title=Userdata/advancedsettings.xml might be a good place to have a read for more info on it.


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


(2012-03-14, 20:19)ronie Wrote:
(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>

so i just replace my startup.xml with thisw one?

Thanks again

Matt


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

(2012-03-17, 01:16)matt77303 Wrote: so i just replace my startup.xml with thisw one?

if you're using confluence, yes.


RE: XBMC Intro Movie - rflores2323 - 2012-03-19

I am hoping that stoli will integrate this addon into neon and metropolis skin. Great work on this.


RE: XBMC Intro Movie - thechinmaster - 2012-03-20

(2012-03-17, 01:48)ronie Wrote:
(2012-03-17, 01:16)matt77303 Wrote: so i just replace my startup.xml with thisw one?

if you're using confluence, yes.

can a similar thing be done in home.xml? (using neon btw)
thanks


XBMC Intro Movie - stoli - 2012-03-22

(2012-03-19, 14:53)rflores2323 Wrote: I am hoping that stoli will integrate this addon into neon and metropolis skin. Great work on this.

Already added to Neon. Will get it in Metropolis next.


RE: XBMC Intro Movie - rflores2323 - 2012-03-25

Does anyone else have any cool intros??


RE: XBMC Intro Movie - Mudislander - 2012-03-25

(2012-03-25, 06:55)rflores2323 Wrote: Does anyone else have any cool intros??

I take you've looked at Frost's addon posted earlier in this thread ?

Edit OK so I'm offcially still asleep. just seen your other post. Must be sleepbrowsing Smile


RE: XBMC Intro Movie - logan_x50 - 2012-03-26

Hi All,

I'm embarrassed I can't get this to work. The standard startup is disabled but I can't get the movie to play at all. Can anyone tell me what I'm doing wrong?

1) I added an intro movie here
/private/var/mobile/Library/Preferences/XBMC/userdata/Intro
2) Amended (confluence) startup.xml as below
<window>
<onload>PlayMedia(special://var/mobile/Library/Preferences/XBMC/userdata/Intro/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>
3) Disabled the startup splash using the script from here
http://forum.xbmc.org/showthread.php?tid=124124&page=6


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

(2012-03-26, 17:48)logan_x50 Wrote: Hi All,

I'm embarrassed I can't get this to work. The standard startup is disabled but I can't get the movie to play at all. Can anyone tell me what I'm doing wrong?

1) I added an intro movie here
/private/var/mobile/Library/Preferences/XBMC/userdata/Intro
2) Amended (confluence) startup.xml as below
<window>
<onload>PlayMedia(special://var/mobile/Library/Preferences/XBMC/userdata/Intro/IntroMovie.mov)</onload>
^ there's you problem.
you can't just make up special:// paths :-)

try with <onload>PlayMedia(/var/mobile/Library/Preferences/XBMC/userdata/Intro/IntroMovie.mov)</onload>
or <onload>PlayMedia(/private/var/mobile/Library/Preferences/XBMC/userdata/Intro/IntroMovie.mov)</onload>



Re: XBMC Intro Movie - htpc guy - 2012-03-26

Ronnie, you beat me to it.

Btw, I finished working on an iPhone game titled Dummy Defense (shameless plug. Everyone check it out. I created the art and someone else handled the programming). Anyway I've got some free time and will be creating some more intro vids.