• 1
  • 53
  • 54
  • 55(current)
  • 56
  • 57
Release Mimic 1.x for Helix
hi braz,

I've a hard time when there is no text!! lol! Managed to find out what the version is : Version 13.2 (git-20140817-0f3db05) Gotham??
Reply
Yeah, no idea what happens when installing in Gotham as that version is not supported. Your userdata folder is likely hidden, see here for how to unhide.

http://kodi.wiki/view/Mac_FAQ#Lion_userdata

If you want to try Mimic I recommend installing Kodi 15 and then installing Mimic from the official repo.
Reply
Great!! Braz, I've found it!! thanks!! so i go ahead and delete it? Smile)
Reply
If you delete it you will lose all of your settings. If you want to keep them, you can try opening the file and removing all of the lines that have "mimic" in them. Then restart xbmc and it should revert to confluence.
Reply
Great! Thanks Braz!! you're a life-saver!!! Smile))
Reply
Image

In above picture you see in the red box some info like title, genre, Full-HD, sound and video codec.
In which xml file can I find this info. I would like to try to add the time duration of the movie.

Thanks.
Reply
(2015-07-28, 15:17)maxdido Wrote: Image

In above picture you see in the red box some info like title, genre, Full-HD, sound and video codec.
In which xml file can I find this info. I would like to try to add the time duration of the movie.

Thanks.
MyVideoNav.xml
Reply
oke, thanks.
Reply
I managed to get the time and rating next to the title.

Image

Image

But when no movie is selected I want the time to be invisible, same as the rating.
I need some help with this.

PHP Code:
<!-- DOWNmovie duration [TIME IN MINUTES] -->
                    <
control type="group">
                        <
width>160</width>
                        <
visible>![Container.Content(tvshows) + Skin.HasSetting(Disable.NextAired)]</visible>
                        <
control type="label">
                            <
left>0</left>
                            <
top>10</top>
                            <
width>140</width>
                            <
height>60</height>
                            <
align>center</align>
                            <
label>[B]$VAR[DurationVar][/B]</label>
                            <
font>font48</font>
                            <
textcolor>grey</textcolor>
                        </
control>
                        <
control type="label">
                            <
top>60</top>
                            <
width>140</width>
                            <
height>30</height>
                            <
align>center</align>
                            <
label>[LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</label>
                            <
font>font12</font>
                            <
textcolor>grey</textcolor>
                        </
control>
                    </
control>
                    <!-- 
UPmovie duration [TIME IN MINUTES] -->
                    <!-- 
DOWNmovie rating [RATING AND VOTES] -->
                    <
control type="group">
                        <
visible>!IsEmpty(ListItem.Rating)</visible>
                        <
left>150</left>
                        <
width>160</width>
                        <
control type="label">
                            <
top>10</top>
                            <
width>200</width>
                            <
height>60</height>
                            <
align>center</align>
                            <
label>[B]$INFO[ListItem.Rating][/B]</label>
                            <
font>font48</font>
                            <
textcolor>grey</textcolor>
                        </
control>
                        <
control type="label">
                            <
top>60</top>
                            <
width>200</width>
                            <
height>30</height>
                            <
align>center</align>
                            <
label>[LOWERCASE]$VAR[RatingAndVotesVar][/LOWERCASE]</label>
                            <
font>font12</font>
                            <
textcolor>grey</textcolor>
                        </
control>
                    </
control>
                    <!-- 
UPmovie rating [RATING AND VOTES] --> 
Reply
Take a look at the visibility conditions used for the other flags, you'll need to use the same for duration.
Reply
I added "<visible>!IsEmpty(DurationVar)</visible>" to the group. Then it disappears but when I select a movie it is still gone. So this is not the way to do it. You have another tip for me.

PHP Code:
                    <!-- DOWNmovie duration [TIME IN MINUTES] -->
                    <
control type="group">
                        <
width>160</width>
                        <
visible>![Container.Content(tvshows) + Skin.HasSetting(Disable.NextAired)]</visible>
                        <
visible>!IsEmpty(DurationVar)</visible>
                        <
control type="label">
                            <
left>0</left>
                            <
top>10</top>
                            <
width>140</width>
                            <
height>60</height>
                            <
align>center</align>
                            <
label>[B]$VAR[DurationVar][/B]</label>
                            <
font>font48</font>
                            <
textcolor>grey</textcolor>
                        </
control>
                        <
control type="label">
                            <
top>60</top>
                            <
width>140</width>
                            <
height>30</height>
                            <
align>center</align>
                            <
label>[LOWERCASE]$LOCALIZE[12391][/LOWERCASE]</label>
                            <
font>font12</font>
                            <
textcolor>grey</textcolor>
                        </
control>
                    </
control>
                    <!-- 
UPmovie duration [TIME IN MINUTES] --> 
Reply
If nothing else works try...

<visible>!StringCompare(ListItem.Label,..)</visible>
Reply
I got it.

PHP Code:
<visible>!IsEmpty(ListItem.Duration)</visible
Reply
i had a question: how do i get a music visualation overlay on the fanart when playing music?Huh
Reply
(2015-10-21, 15:24)barcofan Wrote: i had a question: how do i get a music visualation overlay on the fanart when playing music?Huh

Play some music, backspace so you are in fullscreen mode, then press "m" to bring up the menu. One of the buttons on the left turns on the visualization, another one lets you choose the preset.
Reply
  • 1
  • 53
  • 54
  • 55(current)
  • 56
  • 57

Logout Mark Read Team Forum Stats Members Help
Mimic 1.x for Helix9