• 1
  • 54
  • 55
  • 56(current)
  • 57
  • 58
  • 133
Mod Aeon MQ 8 Multi-Mod
(2020-02-16, 14:20)latts9923 Wrote: @bluebug
It looks like Kodi encountered a problem with the install. Have you tried removing Artwork Beef and installing again?

hi thank you for your advice it seems to be ok now after reinstall artwork beef ,  can you please advise what is the preset for and copy and apply properties to and from storage is as i am unsure , can you also advise please when you go to options how do you get the icons and images into the relevant category thanks for your help
Reply
hi @latts9923 a question:
were the modifications mentioned in post number 765 proposed by @se2k implemented on last update?
Reply
(2020-02-16, 15:53)latts9923 Wrote: UPDATE #13ImageAdditions
  • I noticed there was code in KodiFlixTV to display the user rating as well as the IMDb rating of a TV Show, but the images were missing. There are two new folders in the media folder...stars and userratings.
  • I added code to display the Metacritic rating from the NFO file on a scale of 0-100. Thanks to JanM201 for the request!
  • I added code to display the default fanart for Video Add-ons even if you have "EXTRA FANART" or "ARTWORK BEEF FANART" enabled. However, the curtains image will still display. Thanks to halidri for the request!
  • I reworked the code for all of the discart animations in MusicVisualisation.xml.
  • I added the "HIDE DISCART" option to the Music player Settings window.
  • I added the "Logo in CD" code to style5 and style6 of the music player.
  • I added the spine and back image to the reflection for List 3D v2.
ImageBug fixes
  • I resized the characterart for KodiFlixTV.
  • I moved the position of the bottom Season label for KodiFlixTV so that it would no longer overlap the media flags.
  • I fixed a problem with the mini weather not sliding all the way off the screen when the Weather widget is displayed.
  • I fixed a problem with the discart not displaying in styles 1, 2 and 3 of the music player if you selected "DISCART - IF AVAILABLE". I have also added the discart controls to the rest of the styles. Thanks to Jumpy73 for reporting the bug!
  • I fixed a problem with Shelf 3D not displaying the TV Show's status. Thanks to Bruce_Banner for reporting the bug!
  • I fixed a problem with Shelf 3D and Shelf 3D v2 not displaying the complete video fanart image on the back of the cases. Thanks to Bruce_Banner for reporting the bug!
  • I changed the discart aspectratio for List 3D and List 3D v2 for music so it would display the full image.
  • I fixed a problem with the position of the recently added IMDb rating for KodiFlix.
Download02-16-20 update 
hi i have used this update by over writting the orignal files what i have noticed is that themes are not working from blue down thanks
Reply
@defleppard
I forgot all about that one. I'll look at it again. Thanks for reminding me!

@bluebug
(2020-02-16, 17:28)bluebug Wrote: can you please advise what is the preset for and copy and apply properties to and from storage is as i am unsure , can you also advise please when you go to options how do you get the icons and images into the relevant category thanks for your help

Sorry, I'm not following you on both of these. Can you better describe what you're wanting to accomplish?

Also, on your latest post, download the "Additional themes" file from the first post of this thread? Then copy the folders under "resources" into the same folder of the Add-on's location (Kodi\addons\resource.images.skinthemes.aeonmq\resources). That should fix it.
Reply
hi thanks for your reply in customization i have seen copy and apply properties , is this used for copying a cat accross to option so its not lost ,  can you advise what customization preset is it just says create preset unsure , if i go to skin settings icon and images then you see things like mpaa rating etc how do you put this items in i am trying to get media flags etc in colour thanks

ImageImageImage
Reply
(2020-02-16, 14:28)latts9923 Wrote: @hay19000
@robyn68
Check if SKIN SETTINGS > OPTIONS MENU > PUT PROGRESS INFORMATION IN VIEW is enabled. That controls the watched flag for the Right List view.
As the user hay19000 pointed out to me, the problem of not displaying flags is only using the right view (the one I prefer). The other problem that I am always finding with the view on the right is that in the movies it doesn't even show me the posters, while with all the other views everything works.
Reply
Greetings all.  My primary focus for this great skin & MOD is for music playback.  Recent problems with Artist Slideshow prompted @latts9923 to Publish a fix last December, which allowed the primary Artist Fanart to display but, for me at least, not to cycle multiple Fanart shots.  Snooping into the code for Musicvisualisation.xml and Latts' fix I found on Line 60: 
 
Code:
<visible>String.IsEqual(skin.string(vis_bg),slideshow) | String.IsEqual(skin.string(vis_bg),slideshowmix) + !String.IsEmpty(Window(Visualisation).Property(ArtistSlideshow.ArtworkReady))</visible>

Note the "+" symbol towards the end of the line.  Changing it to a "|" fixed the problem for me and now my Artist Fanart will cycle.  Here's a corrected Line 60:
 
Code:
<visible>String.IsEqual(skin.string(vis_bg),slideshow) | String.IsEqual(skin.string(vis_bg),slideshowmix) | !String.IsEmpty(Window(Visualisation).Property(ArtistSlideshow.ArtworkReady))</visible>

BTW, the same error was used for CustomOSD.xml Line 48  The correct code should be:
Code:
<visible>String.IsEqual(skin.string(vis_bg),slideshow) | String.IsEqual(skin.string(vis_bg),slideshowmix) |  !String.IsEmpty(Window(Visualisation).Property(ArtistSlideshow.ArtworkReady)</visible>
Reply
Me again... Smile.  I've (neurotically) tweaked the current Layout 3 for MusicVisualisation.xml to my liking.  Here's a screenshot (click on image for large detail) :

Image

Tweaks and changes in order as listed in MusicVisualisation.xml are:
  1. Added Info time out as included in other Layouts;
  2. Removed the little "notch" in the CoverArt
  3. Modified code to show MultiLogos (mid-cycle in screenshot);
  4. Modified TrackNumber to show PlaylistPosition, thereby allowing Tracks 1-9 to display without a "0"
  5. Deleted Genre from Album Info line
  6. Changed Track Star Rating to change color based on Rating, similar to format used in RightView;
  7. Rearranged file data to (properly) display as BitRate/SampleRate/BitsPerSample;
  8. Changed Next Track display to same as used in #4 above AND added total # of Playlist tracks to data line;
  9. Changed Next Track Star Rating from "UserRating" to "Rating" data included in MyMusic72.db (still an unfixed problem in Kodi);
  10. Moved the AudioCodec symbol up a smidge (was too low);
  11. Removed Channel logo, as all of my music is 2-CH (when Kodi can someday play multi-channel iso files I will restore); and
  12. Removed the "Track # of Total #" line (see 8 above).
If  any interested in these you can replace the entire listing of code for Layout 3 (lines 559-892) with the code below.  If you'd like some but not all of these changes PM me. Smile
Code:
<!-- Layout 3  -->
        <control type="group">
            <visible>[Player.ShowInfo | Window.IsActive(MusicOSD) | !Visualisation.Enabled] + ![Window.IsVisible(AddonSettings) | Window.IsVisible(SelectDialog) | Window.IsVisible(VisualisationPresetList)]</visible>
            <animation effect="fade" time="500">VisibleChange</animation>
            <left>0</left>
            <top>1160</top>
            <animation effect="slide" start="0,0" end="0,-200" time="400" tween="cubic" easing="inout" condition="Window.IsVisible(musicosd)">Conditional</animation>
            <animation effect="slide" start="0,0" end="0,-50" time="400" tween="cubic" easing="inout" condition="Player.Rewinding | Player.Forwarding">Conditional</animation>
            <animation effect="slide" start="0,0" end="0,450" time="700" tween="cubic" easing="out" condition="Skin.HasSetting(novisfurniture)">Conditional</animation>
            <animation effect="slide" start="0,0" end="-1350,0" time="400" tween="cubic" easing="inout" condition="Skin.HasSetting(furniture_cdart)">Conditional</animation>
            <animation effect="slide" start="0,1080" end="0,-450" time="700" tween="cubic" easing="out" delay="400">WindowOpen</animation>
            <animation effect="slide" start="0,-450" end="0,0" time="400" tween="cubic" easing="in" delay="400">WindowClose</animation>
            <visible>String.IsEqual(skin.string(vis_layout),style3)</visible>
            <control type="image">
                <left>0</left>
                <top>-60</top>
                <height>750</height>
                <width>2520</width>
                <texture>details_back.png</texture>
                <colordiffuse>$INFO[skin.string(colortexture)]</colordiffuse>
            </control>
            <control type="group">
                <left>-105</left>
                <top>-30</top>
                <animation effect="slide" start="0,0" end="210,0" time="800" delay="2000" tween="sine" easing="inout">WindowOpen</animation>
                <!--*   MULTI-MOD   *-->
                <animation effect="slide" end="-210,0" time="800" tween="sine" easing="inout" condition="Skin.HasSetting(noviscdart)">Conditional</animation>
                <animation effect="fade" start="100" end="0,0" time="300" delay="500" condition="Skin.HasSetting(noviscdart)">Conditional</animation>
                <!--*   MULTI-MOD   *-->
                <control type="image">                    
                    <left>50</left>
                    <top>-80</top>
                    <width>632</width>
                    <height>450</height>
                    <aspectratio align="center" aligny="center">keep</aspectratio>
                    <texture diffuse="cdart_diffuse.png" background="true">$VAR[audiodisc_layout]</texture>                    
                    <include>animation_cdart</include>
                    <visible>String.IsEqual(skin.string(visdiscart),always)</visible>
                </control>
                <control type="image">                    
                    <left>50</left>
                    <top>-80</top>
                    <width>632</width>
                    <height>450</height>
                    <aspectratio align="center" aligny="center">keep</aspectratio>
                    <texture diffuse="cdart_diffuse.png" background="true">$VAR[media_discart]</texture>
                    <include>animation_cdart</include>
                    <visible>String.IsEqual(skin.string(visdiscart),always) | [String.IsEqual(skin.string(visdiscart),ifavailable) + !String.IsEmpty(Player.Art(discart))]
                | [String.IsEqual(skin.string(visdiscart),ifavailable) + !String.IsEmpty(Window(home).Property(SkinHelper.Player.Art.DiscArt))]</visible>
                </control>
            </control>
            <control type="image">
                <left>30</left>
                <top>-110</top>
                <width>632</width>
                <height>450</height>
                <fadetime>200</fadetime>
                <texture fallback="DefaultAudio.png" background="true">$INFO[MusicPlayer.Cover]</texture>
                <aspectratio align="left">keep</aspectratio>
            </control>
            <control type="image">
                <!-- reflexo -->
                <left>30</left>
                <top>345</top>
                <width>632</width>
                <height>450</height>
                <fadetime>200</fadetime>
                <texture flipy="true" fallback="DefaultAudio.png" diffuse="thumb_reflect.png" background="true">$INFO[MusicPlayer.Cover]</texture>
                <aspectratio align="left" aligny="top">keep</aspectratio>
            </control>
            <!-- logo artista -->
            <!-- L O G O -->
                <control type="multiimage" id="5060">
                    <left>698</left>
                    <top>-100</top>
                    <width>1192</width>
                    <height>150</height>
                    <aspectratio align="right" aligny="bottom">keep</aspectratio>
                    <fadetime>1200</fadetime>
                    <timeperimage>2000</timeperimage>
                    <imagepath fallback="blanc.png" background="true">$INFO[Window(Home).Property(SkinHelper.Player.Art.ClearLogo)]</imagepath>
                    <visible>!String.IsEmpty(Window(Home).Property(SkinHelper.Player.Art.ClearLogo)) + String.IsEmpty(Window(Home).Property(SkinHelper.Player.Art.ClearLogos))</visible>
                </control>
                <!-- L O G O S -->
                <control type="multiimage" id="5060">
                    <left>698</left>
                    <top>-100</top>
                    <width>1192</width>
                    <height>150</height>
                    <aspectratio align="right" aligny="bottom">keep</aspectratio>
                    <fadetime>1200</fadetime>
                    <timeperimage>2000</timeperimage>
                    <imagepath fallback="blanc.png" background="true">$INFO[Window(Home).Property(SkinHelper.Player.Art.ClearLogos)]</imagepath>
                    <visible>!String.IsEmpty(Window(Home).Property(SkinHelper.Player.Art.ClearLogos))</visible>
                </control>
            <!-- nome do artista -->
            <control type="label" id="880041">
                    <left>730</left>
                    <top>10</top>
                    <width>1160</width>
                    <height>45</height>
                    <align>right</align>
                    <font>Font_title</font>
                    <label>$INFO[Window(Home).Property(SkinHelper.Player.Artist)]</label>
                    <textcolor>CCFFFFFF</textcolor>
                    <shadowcolor>AA000000</shadowcolor>
                    <scroll>false</scroll>
                    <visible>String.IsEmpty(Window(Home).Property(SkinHelper.Player.Art.ClearLogo)) + String.IsEmpty(Window(Home).Property(SkinHelper.Player.Art.ClearLogos))</visible>
                </control>
            <!-- Nome da faixa -->
            <control type="label">
                <left>698</left>
                <top>78</top>
                <width>1192</width>
                <height>30</height>
                <align>right</align>
                <font>font_title</font>
                <!--*   MULTI-MOD   *-->
                <label>[COLOR=$INFO[skin.string(colorheader)]]$INFO[MusicPlayer.PlaylistPosition,,: ]$INFO[MusicPlayer.Title][/COLOR]</label>
                <!--*   MULTI-MOD   *-->
                <textcolor>88DDDDDD</textcolor>
                <shadowcolor>AA000000</shadowcolor>
                <scroll>false</scroll>
                <scrollout>false</scrollout>
            </control>
            <!-- Nome do album -->
            <control type="label">
                <left>968</left>
                <!--*   MULTI-MOD   *-->
                <top>128</top>
                <!--*   MULTI-MOD   *-->
                <width>922</width>
                <height>30</height>
                <align>right</align>
                <font>font_list</font>
                <label>$INFO[MusicPlayer.Album] $INFO[MusicPlayer.Year,| ,]</label>
                <textcolor>88DDDDDD</textcolor>
                <shadowcolor>AA000000</shadowcolor>
                <scroll>false</scroll>
                <scrollout>false</scrollout>
            </control>
            <!--*   MULTI-MOD   *-->
            <!-- Track Rating -->
            <control type="image">
                <left>1588</left>
                <top>162</top>
                <width>300</width>
                <height>38</height>
                <texture>$VAR[styleratingstars]$INFO[MusicPlayer.UserRating,,.0.png]</texture>
                <colordiffuse>$VAR[value_colorratingstars_PL_song_user]</colordiffuse>
                <aspectratio align="right" aligny="bottom">keep</aspectratio>
            </control>
            <!--*   MULTI-MOD   *-->
            <control type="label">
                <left>705</left>
                <top>315</top>
                <width>300</width>
                <height>36</height>
                <align>left</align>
                <font>font_button</font>
                <label>$INFO[MusicPlayer.BitRate,, [COLOR=88DDDDDD]Kbps[/COLOR]][COLOR=50FFFAF0] | [/COLOR]$INFO[MusicPlayer.SampleRate,, [COLOR=88DDDDDD]KHz[/COLOR]][COLOR=50FFFAF0] | [/COLOR]$INFO[MusicPlayer.BitsPerSample,, [COLOR=88DDDDDD]Bits[/COLOR]]</label>
                <textcolor>$INFO[skin.string(colorheader)]</textcolor>
                <shadowcolor>AA000000</shadowcolor>
            </control>
            <!-- Barra de cache -->
            <control type="progress">
                <left>705</left>
                <top>300</top>
                <width>255</width>
                <height>8</height>
                <info>Player.ProgressCache</info>
                <midtexture>progress_mid.png</midtexture>
                <colordiffuse>$INFO[skin.string(colorheader)]</colordiffuse>
                <animation effect="fade" end="70" condition="true">Conditional</animation>
            </control>
            <!-- Barra de progresso -->
            <control type="progress">
                <left>705</left>
                <top>300</top>
                <width>255</width>
                <height>8</height>
                <info>Player.Progress</info>
                <animation effect="fade" end="70" condition="true">Conditional</animation>
            </control>
            <!-- Duracao -->
            <control type="label">
                <left>705</left>
                <top>255</top>
                <width>300</width>
                <height>27</height>
                <align>left</align>
                <font>font_titlesettings</font>
                <label>$INFO[MusicPlayer.Time] / $INFO[MusicPlayer.Duration]</label>
                <textcolor>CCFFFFFF</textcolor>
                <shadowcolor>AA000000</shadowcolor>
                <scroll>false</scroll>
                <scrollout>false</scrollout>
            </control>
            <!-- Proxima faixa - proximo artista -->
            <control type="label">
                <left>1200</left>
                <top>201</top>
                <width>525</width>
                <height>45</height>
                <align>right</align>
                <font>font_button</font>
                <textcolor>$INFO[skin.string(colorheader)]</textcolor>
                <shadowcolor>AA000000</shadowcolor>
                <label>$LOCALIZE[31525]:</label>
                <scroll>false</scroll>
                <scrollout>false</scrollout>
            </control>
            <control type="label">
                <left>1011</left>
                <top>240</top>
                <width>712</width>
                <height>45</height>
                <align>right</align>
                <font>font_plot</font>
                <label>[COLOR=$INFO[skin.string(colorheader)]]$INFO[MusicPlayer.offset(1).PlaylistPosition,, of ]$INFO[MusicPlayer.PlaylistLength]: $INFO[MusicPlayer.offset(1).Title][/COLOR]</label>
                <textcolor>88DDDDDD</textcolor>
                <shadowcolor>AA000000</shadowcolor>
                <scroll>false</scroll>
                <scrollout>false</scrollout>
            </control>
            <control type="label">
                <left>1275</left>
                <top>274</top>
                <width>450</width>
                <height>45</height>
                <align>right</align>
                <font>font_plot</font>
                <label>$INFO[MusicPlayer.offset(1).Artist]</label>
                <textcolor>88DDDDDD</textcolor>
                <shadowcolor>AA000000</shadowcolor>
                <scroll>false</scroll>
                <scrollout>false</scrollout>
            </control>
            <!--*   MULTI-MOD   *-->
            <control type="image" id="880057">
                <left>1582</left>
                <top>316</top>
                <width>150</width>
                <height>15</height>
                <texture fallback="$VAR[styleratingstars,,0.png]">$VAR[styleratingstars]$INFO[MusicPlayer.offset(1).Rating,,.png]</texture>
                <colordiffuse>$INFO[skin.string(colorheader)]</colordiffuse>
                <aspectratio align="right" aligny="center">stretch</aspectratio>
            </control>
            <!--control type="image">
                <left>1682</left>
                <top>316</top>
                <width>45</width>
                <height>30</height>
                <texture colordiffuse="AA000000">arrow_right.png</texture>
                <aspectratio align="right" aligny="bottom">keep</aspectratio>
            </control>
            <control type="image">
                <left>1680</left>
                <top>315</top>
                <width>45</width>
                <height>30</height>
                <texture colordiffuse="AADDDDDD">arrow_right.png</texture>
                <aspectratio align="right" aligny="bottom">keep</aspectratio>
            </control-->
            <!--*   MULTI-MOD   *-->
            <control type="image">
                <left>705</left>
                <top>135</top>
                <width>230</width>
                <height>98</height>
                <aspectratio align="left" aligny="bottom">keep</aspectratio>
                <texture colordiffuse="ff3a3a3a">$VAR[recordlabels_path]$INFO[MusicPlayer.Property(Album_Label),,.png]</texture>
            </control>
            <control type="image">
                <!--*   MULTI-MOD   *-->
                <left>990</left>
                <!--*   MULTI-MOD   *-->
                <top>270</top>
                <width>135</width>
                <height>98</height>
                <aspectratio align="left" aligny="bottom">keep</aspectratio>
                <!--*   MULTI-MOD   *-->
                <texture colordiffuse="ffbababa">$VAR[audiocodec_path]$INFO[MusicPlayer.Codec,,.png]</texture>
                <!--*   MULTI-MOD   *-->
            </control>
            <!--control type="label">
                <!--*   MULTI-MOD   *-->
                <left>1100</left>
                <!--*   MULTI-MOD   *-->
                <top>282</top>
                <width>135</width>
                <height>98</height>
                <align>center</align>
                <font>font_channels</font>
                <textcolor>88DDDDDD</textcolor>
                <shadowcolor>AA000000</shadowcolor>
                <label>$INFO[MusicPlayer.Channels,,CH]</label>
                <scroll>false</scroll>
                <scrollout>false</scrollout>
            <!--/control>
            <!--*   MULTI-MOD   *-->
            <!--control type="image">
                <left>1302</left>
                <top>310</top>
                <width>300</width>
                <height>38</height>
                <texture fallback="subtitle_rating_0.png">$INFO[Player.StarRating]</texture>
                <colordiffuse>$INFO[skin.string(colorheader)]</colordiffuse>
                <aspectratio align="left" aligny="bottom">keep</aspectratio>
            </control-->
            <!--*   MULTI-MOD   *-->
            <control type="image">
                <left>1748</left>
                <top>208</top>
                <width>135</width>
                <height>135</height>
                <fadetime>200</fadetime>
                <texture fallback="DefaultAudio.png" background="true">$INFO[MusicPlayer.offset(1).Cover]</texture>
                <aspectratio align="left" aligny="bottom">keep</aspectratio>
            </control>
        </control>
Reply
hi @jasn 
My be you can give me an advise.. because, i can´t make discart work.
I can't make AB work well. regardless of the configuration the silver cd is always shown. In your case, everything works fine?
Reply
(2020-02-19, 20:59)defleppard Wrote: hi @jasn 
My be you can give me an advise.. because, i can´t make discart work.
I can't make AB work well. regardless of the configuration the silver cd is always shown. In your case, everything works fine?

Questions for you @defleppard, likely too simple...
Do you have discart enabled in the Settings (Visualizations Window)? (I guess ogt must be because you are showing a silver disc)
What name and where is your discart? I am still naming my discs "cdart.png". I also store my artwork in the album folder.

All has been working well for me, including latts' fix for displaying cdart when available.
Reply
(2020-02-19, 21:28)jasn Wrote:
(2020-02-19, 20:59)defleppard Wrote: hi @jasn 
My be you can give me an advise.. because, i can´t make discart work.
I can't make AB work well. regardless of the configuration the silver cd is always shown. In your case, everything works fine?

Questions for you @defleppard, likely too simple...
Do you have discart enabled in the Settings (Visualizations Window)? (I guess ogt must be because you are showing a silver disc)
What name and where is your discart? I am still naming my discs "cdart.png". I also store my artwork in the album folder.

All has been working well for me, including latts' fix for displaying cdart when available.  
thanx @jasn for your reply

1) yes, it is set to "always enable"
2) In each album I have 3 files just in case. "cdart" "discart" and "disc", all in png format.

3)To be more exact, the problem is overcome with compilations (various artist). If I am playing a compilation and change to aeonmq7 mod, the disk image appears normally. Also if I change to ACE2 skin. So it is not a problem related to kodi and aeonmq8 and mod.
Reply
Sorry Guys n Girls, this may have be brought up, but there's no art in info view in MOVIES....I mean the info view when you press "I" at movie selection.

Thanks Big Grin
Image
Reply
(2020-02-19, 23:59)defleppard Wrote:
(2020-02-19, 21:28)jasn Wrote:
(2020-02-19, 20:59)defleppard Wrote: hi @jasn 
My be you can give me an advise.. because, i can´t make discart work.
I can't make AB work well. regardless of the configuration the silver cd is always shown. In your case, everything works fine?

Questions for you @defleppard, likely too simple...
Do you have discart enabled in the Settings (Visualizations Window)? (I guess ogt must be because you are showing a silver disc)
What name and where is your discart? I am still naming my discs "cdart.png". I also store my artwork in the album folder.

All has been working well for me, including latts' fix for displaying cdart when available.   
thanx @jasn for your reply

1) yes, it is set to "always enable"
2) In each album I have 3 files just in case. "cdart" "discart" and "disc", all in png format.

3)To be more exact, the problem is overcome with compilations (various artist). If I am playing a compilation and change to aeonmq7 mod, the disk image appears normally. Also if I change to ACE2 skin. So it is not a problem related to kodi and aeonmq8 and mod. 
Sorry @defleppard, are you saying in #3 that the problem is only with MQ8, not with MQ7 and Ace2, and only for compilations?  Discart shows for singular artist releases?  If only for compilations it may be a file tagging issue?
Reply
@latts9923
Hi I have been using the mod and have been enjoying it a lot. Thanks for the great work and effort.
I especially like the recent feature of the played percentage and watched flags to the video.

However for this particular feature I have only been able to get it to work for the native KODI player and any external player is unfortunately not working.
Is there anything I can do to make this work for external players as well?

Thanks for your hard work.
Reply
(2020-02-20, 18:55)jasn Wrote:
(2020-02-19, 23:59)defleppard Wrote:
(2020-02-19, 21:28)jasn Wrote: Questions for you @defleppard, likely too simple...
Do you have discart enabled in the Settings (Visualizations Window)? (I guess ogt must be because you are showing a silver disc)
What name and where is your discart? I am still naming my discs "cdart.png". I also store my artwork in the album folder.

All has been working well for me, including latts' fix for displaying cdart when available.   
thanx @jasn for your reply

1) yes, it is set to "always enable"
2) In each album I have 3 files just in case. "cdart" "discart" and "disc", all in png format.

3)To be more exact, the problem is overcome with compilations (various artist). If I am playing a compilation and change to aeonmq7 mod, the disk image appears normally. Also if I change to ACE2 skin. So it is not a problem related to kodi and aeonmq8 and mod.   
Sorry @defleppard, are you saying in #3 that the problem is only with MQ8, not with MQ7 and Ace2, and only for compilations?  Discart shows for singular artist releases?  If only for compilations it may be a file tagging issue?  

EXACTLY-- in compilations and bootlegs..
the question is.. Why  7 and ace 2 yes?
Im intalling all again right now..
Reply
  • 1
  • 54
  • 55
  • 56(current)
  • 57
  • 58
  • 133

Logout Mark Read Team Forum Stats Members Help
Aeon MQ 8 Multi-Mod10