View Full Version : Aeon Stark not showing movie in background while playing?
ScrotzaN
2009-05-06, 12:39
Is there something wrong with my Aeon Stark skin?
Cause If I have a movie playing and then press escape to get to the menu I just get the ordinary backdrops. No movie preview whilst I go through the menus.
All the other skins I've seen has this feature so I reckon there gotta be a setting to activate this feature?
Thanx in advance!
Is there something wrong with my Aeon Stark skin?
Cause If I have a movie playing and then press escape to get to the menu I just get the ordinary backdrops. No movie preview whilst I go through the menus.
All the other skins I've seen has this feature so I reckon there gotta be a setting to activate this feature?
Thanx in advance!
+1 for missing such a "picture in picture" alike window. atm only music playing and visualisation found their way to such a display.
ScrotzaN
2009-05-06, 14:43
If this feature just simply isnt implemented it cant be that hard for someone who knows there way around xml?
The trouble with implementing it is working out where it's going to go in all the different views types/layouts.
ScrotzaN
2009-05-06, 14:57
Couldnt you just have it run fullscreen in the background all the time?
I would be plenty happy with that.
The trouble with implementing it is working out where it's going to go in all the different views types/layouts.
personally i would prefer to only have it in the home window. for me there is no need to display the movie in showcase/multiplex/filemode/wall view. just like the music playing info is.
ScrotzaN
2009-05-06, 15:34
The trouble with implementing it is working out where it's going to go in all the different views types/layouts.
How easy it is to just implement it fullscreen in the background?
Is it like one line of code with tags or something?
If it's that easy and something could give me the code and just some brief info of where to put it I could work it out for myself.
Hi all,
Yes I'm like azido,
A little windows like music player on home for videos.
By the way have you a shortkey in order to return on playing video ?
Cheers !!
Only One Haze
2009-05-06, 15:37
Horizonz has full screen video backdrop in the home menu, maybe someone can translate that over???
by the way have you a shortkey in order to return on playing video ?
tab
ScrotzaN
2009-05-06, 17:15
I have no idea if this has anything to do with it.
But I saw in another thread this fix to hide a library update dialog when playing video.
and it had this: <visible>!Player.HasVideo</visible>
is this something that can be used to hide the background image somewhere in another file?
Cause I assume that the video is playing in the background always and that the background just goes on top of it and hides it as it works now.
OK, this is real quick (I'll look deeper in to it later) but here's how to add it for the Home menu.
Open up your Home.xml and find this - <include>Background_Wallpaper</include>and replace it with this - <control type="videowindow" id="2">
<description>Home Now Playing Video</description>
<posx>0</posx>
<posy>0</posy>
<width>1280</width>
<height>720</height>
<visible>true</visible>
</control>
<control type="group">
<include>Background_Wallpaper</include>
<visible>!Player.HasVideo</visible>
</control>
And Bob's your uncle.
ScrotzaN
2009-05-06, 18:27
Ooh! Thank you! :laugh:
Im gonna try that out later when Im at home.
Im guessing the procedure is the same but with a different file the settingsdialog and such? :)
OK, this is real quick (I'll look deeper in to it later) but here's how to add it for the Home menu.
Open up your Home.xml and find this - <include>Background_Wallpaper</include>and replace it with this - <control type="videowindow" id="2">
<description>Home Now Playing Video</description>
<posx>0</posx>
<posy>0</posy>
<width>1280</width>
<height>720</height>
<visible>true</visible>
</control>
<control type="group">
<include>Background_Wallpaper</include>
<visible>!Player.HasVideo</visible>
</control>And Bob's your uncle.
god damned, you are fast.
i should adopt you as my personal bob.
:nod:
god damned, you are fast.
i should adopt you as my personal bob.
:nod:
Now I've had more time to look at it I've added an On/Off option -
http://xbmc.org/forum/showthread.php?t=50444
i've modified the code a bit to only show a small 400x300 window for the video and still have the background available..
<control type="group">
<include>Background_Wallpaper</include>
<visible>true</visible>
</control>
<control type="videowindow" id="2">
<description>Home Now Playing Video</description>
<posx>20</posx>
<posy>50</posy>
<width>400</width>
<height>300</height>
<visible>Player.HasVideo</visible>
</control>now what i'm missing here is some furniture for it, the name of the current playing video - and of course player controls ;)
Now I've had more time to look at it I've added an On/Off option -
http://xbmc.org/forum/showthread.php?t=50444
yeah i saw that. cheers for it.
Only One Haze
2009-05-07, 00:51
got a question for people that also have the mod with the trailer window in multiplex... the background video mod works on the home screen, but if i go into a category like movies then the movie changes to the window size and in the place where the trailer would be. when i go back to the home screen it goes back to fullscreen video. thought it was wkinda weird. anyone else have this happen?