Kodi Community Forum
Arctic: Zephyr 2 - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Arctic: Zephyr - Reloaded (https://forum.kodi.tv/forumdisplay.php?fid=221)
+---- Thread: Arctic: Zephyr 2 (/showthread.php?tid=339791)



RE: Arctic: Zephyr 2 - beatmasterrs - 2019-07-27

(2019-07-27, 10:41)jurialmunkey Wrote:
(2019-07-26, 10:59)loeffelpan Wrote:
(2019-07-26, 01:52)jurialmunkey Wrote: Yeah you are right - I forgot that it opens locally for items with a dbid. The extendedinfo option just allows for showing items not in the library too.

If I recall correctly, the similar function of extendedinfo no longer works. I remember using it for something in AZ1 and I'm pretty sure it stopped working quite a while ago (which would explain its removal from ftv). I think it used trakt, which no longer functions correctly in extended info - only themoviedb stuff works in extendedinfo now.

Okay, but TMDB has recommendations in their api, too. Then the only ways are to fix this in extended info (but phil65 seems not to be active) or maybe add this to skin.helper.widgets?

Any way someone can do this? Maybe as a pull request in marcelveldt‘s repo?             

I'm currently working on a "TheMovieDB Helper" plugin which will provide skinners with access to TheMovieDb's API.
Ultimately I'm looking at providing a more skinner customisable approach that eventually will hopefully replace many of the parts in extendedinfo.
My Python skills are fairly average, so it is slow going and I'm learning a lot along the way - but the current state is looking promising.             

ID's
The problem is, that the TMDB ID is not stored in the Database. This is how ExtendedInfoScript tries to get to the TMDB ID via IMDB. The IMDB ID is also most not available in the DB for TVShows.
So it would be good, if scrapers would save the TMDB ID or IMDB ID also for TVShows in the database.

A possible solution to Show similar TV shows is to query the title of the TV show in ExtendedInfoScript. ExtendedInfoScript provides this function:

xml:
elif info == 'similartvshows':
        tvshow_id = None
        dbid = params.get("dbid")
        name = params.get("name")
        tmdb_id = params.get("tmdb_id")
        tvdb_id = params.get("tvdb_id")
        imdb_id = params.get("imdb_id")
        if tmdb_id:
            tvshow_id = tmdb_id
        elif dbid and int(dbid) > 0:
            tvdb_id = local_db.get_imdb_id("tvshow", dbid)
            if tvdb_id:
                tvshow_id = tmdb.get_show_tmdb_id(tvdb_id)
        elif tvdb_id:
            tvshow_id = tmdb.get_show_tmdb_id(tvdb_id)
        elif imdb_id:
            tvshow_id = tmdb.get_show_tmdb_id(imdb_id, "imdb_id")
        elif name:
            tvshow_id = tmdb.search_media(media_name=name,
                                          year="",
                                          media_type="tv")
        if tvshow_id:
            return tmdb.get_similar_tvshows(tvshow_id)

Query
xml:
plugin://script.extendedinfo?info=similartvshows&&name=$INFO[ListItem.Label]

I have extended the function of the script a little bit:
xml:
plugin://script.extendedinfo?info=recommedtvshows&&name=$INFO[ListItem.Label]
xml:
plugin://script.extendedinfo?info=recommedmovies&&dbid=$INFO[ListItem.DBID]

Download
https://github.com/beatmasterRS/script.extendedinfo

Of course, it would be better to do the query with a unique TMDB/IMDB-ID instead of the title.


RE: Arctic: Zephyr 2 - curael - 2019-07-27

(2019-07-27, 03:18)jurialmunkey Wrote: Should be fix as of 0.9.41-alpha4 - please test latest release and confirm.
Well - it does, thanks for the fix! How ever, there's another issue with this view in regards to thumbnails it seems. Kodi does not "touch" the file, in this view. This means that since I'm generating the thumbs in Kodi, and not low res pulls from artwork scrapers, the thumbnail will not show up until I dive one step further down into the hierarchy and actually touch the file, in the episode view. I do not know how this is solved. I'd imagine you're routing the episodes into the season view in some call? Smile None the less, I really like the idea of these views. They are really cool.
(2019-07-27, 03:18)jurialmunkey Wrote: Added for episodes.
You can also use Small Landscape widgets to see info underneath the thumb.
Oh, yeah, the Small Landscape widget is really cool too. I use it for the YouTube add-on. ^^
(2019-07-27, 03:18)jurialmunkey Wrote: Works fine for me from context menu.
What are you using as the widget?
Oh, yes, that does indeed work. I'm so used to just using the Kodi shortcut key bound to my remote that I didn't think of just bringing up the context menu. However.. The watch state shortcut key doesn't work - but it's suddenly not as important. Wink
(2019-07-27, 03:18)jurialmunkey Wrote: Fanart blur is available in Skin Settings > Background > Blur background.
Yea, I know it is. But I was thinking of that insane implementation you had in Aura that had options for the blur - also, somtimes when I enable blur in AZ2 I get really distorted blur and then on the next image it goes back to normal "less" blurry images. I'll try to provoke it to do so and send a log. I don't know what is causing it. At least I'm on a brand new Kodi install so I shouldn't have anything interfering.
(2019-07-27, 03:18)jurialmunkey Wrote: If you don't like clearart then why do you download it?
In the info dialog for the tvshow click "Manage" > "Select Art (Kodi)" > "Clearlogo" > "No art"
If you only have an option for local art, then you need to delete the clearlogo from the folder first.
Oh, I "like" it on the OSD for example. This sorta tie into the "monochrome mantra" for AZ. I simply don't like the different and very vibrant clear arts on top of the episodes. I find it cluttered. But since I can't use the OSD in MPC-BE, I decided to do as you advised and I deleted all the clearlogos through Artwork Beef. Wonderful. Smile
(2019-07-27, 03:18)jurialmunkey Wrote: It's a no to this request. AZ is a mostly monochrome skin. Color accents are used sparingly.
I knew you'd say that. :p But I was trying my luck, lol. It might be too much anyway, so on second thought, you're right.
(2019-07-27, 03:18)jurialmunkey Wrote: Maybe once I'm out of Alpha. Multiple fontsets are far too difficult to manage when making significant changes to the skin.
Yeah, no rush. I tried to look into adding it myself and it looked like a pain.
(2019-07-27, 03:18)jurialmunkey Wrote: Yeah vertical menu navigation still needs some work.
Back press reset is a good idea. Not sure of any way to get to the last item though. Vertical menu navigation is always going to be cumbersome because there isn't any completely intuitive way to navigate unlike horizontal menu layout.
Well, I'm glad you can use the idea. Smile That was what I was hoping writing it.
(2019-07-27, 03:18)jurialmunkey Wrote: The problem is that Kodi overrides back button behaviour if something is playing and will instead always toggle fullscreen video/visualisation.
So if you make navigation dependent on the back button to get to the menu then you will get stuck inside the widget if something is playing.
Yeah that'd be a problem - not much to do about that.
(2019-07-27, 03:18)jurialmunkey Wrote: Yeah this is the advantage of only having one home menu layout. Having multiple home menu layouts mean some compromises have to be made in terms of navigation (or else manage massively complicated conditions). 
Indeed. Overall I think it has turned out very well, compromises considered. Smile

Thanks for the fixes and getting back to me. Wink


RE: Arctic: Zephyr 2 - Starmanrf - 2019-07-27

(2019-07-15, 12:18)Starmanrf Wrote: Hiya,

Love the setup for the music player. Is there a way you could have the player draw clearlogo artwork from artist. I have a lot of compilation albums and the clearlogo seems to draw from the album data (Various Artists).
Image

Works fine when its an actual album from the artist so i assume it pulls the metadata from album info...is it possible for you to set the player to draw from the artist metadata for the clearlogo even on a compilation album? wasnt sure if it is an embedded kodi protocol or if you can tweak it on the skin.

Image

Cheers, Keep up the great work!

@jurialmunkey  Also, can i make a little house keeping request on the info dialog under the collection/sets widget. Are you able to change the view order of items that appear in the collection to ascending release date order....

Image

At the moment, the collections appear in random order and would be great if they appeared in order of the year it was released earliest to latest. 

Not sure if its possible, but are you also able to put the word 'collection' at the end of the collection/set description... i.e. above it reads Films in the Robert langdon... for it to appear 'Films in the [collection/set] collection' would put my ocd in check lol.

Thanks again for all your hard work, just donated to this awesome project!

Cheers,

Ryan


RE: Arctic: Zephyr 2 - jurialmunkey - 2019-07-27

(2019-07-27, 14:59)Starmanrf Wrote:
(2019-07-15, 12:18)Starmanrf Wrote: Hiya,

Love the setup for the music player. Is there a way you could have the player draw clearlogo artwork from artist. I have a lot of compilation albums and the clearlogo seems to draw from the album data (Various Artists).
Image

Works fine when its an actual album from the artist so i assume it pulls the metadata from album info...is it possible for you to set the player to draw from the artist metadata for the clearlogo even on a compilation album? wasnt sure if it is an embedded kodi protocol or if you can tweak it on the skin.

Image

Cheers, Keep up the great work!

@jurialmunkey  Also, can i make a little house keeping request on the info dialog under the collection/sets widget. Are you able to change the view order of items that appear in the collection to ascending release date order....

Image

At the moment, the collections appear in random order and would be great if they appeared in order of the year it was released earliest to latest. 

Not sure if its possible, but are you also able to put the word 'collection' at the end of the collection/set description... i.e. above it reads Films in the Robert langdon... for it to appear 'Films in the [collection/set] collection' would put my ocd in check lol.

Thanks again for all your hard work, just donated to this awesome project!

Cheers,

Ryan

Thanks! Big Grin

Fixed the sets widget in info dialog.

All my collections are named "The NAME Collection", so adding collection on the end would double it up. What scraper do you use? I use the universal scraper and I think this is one of its default settings.

Also, did I ever fix that issue with music artist clearlogo for various artists? If not, I'll have a look at fixing it tomorrow.


RE: Arctic: Zephyr 2 - Starmanrf - 2019-07-27

Thanks! Big Grin

Fixed the sets widget in info dialog.

All my collections are named "The NAME Collection", so adding collection on the end would double it up. What scraper do you use? I use the universal scraper and I think this is one of its default settings.

Also, did I ever fix that issue with music artist clearlogo for various artists? If not, I'll have a look at fixing it tomorrow.
[/quote]

Great !! Good shout about the scraper... I'm also using Plex Kodi connect to manage media to my library... Gonna look for a fix on the media server.

Cheers 👍


RE: Arctic: Zephyr 2 - titidel - 2019-07-27

Hi Jurialmunkey,
I saw in the textures, an HDR icon. But I do not see it in the flags of the movies. How to make it appear on HDR files?


RE: Arctic: Zephyr 2 - drinfernoo - 2019-07-27

(2019-07-27, 03:18)jurialmunkey Wrote: It's a no to this request. AZ is a mostly monochrome skin. Color accents are used sparingly.

Would you be willing to accept a PR that added it in a friendly way?


RE: Arctic: Zephyr 2 - jurialmunkey - 2019-07-27

(2019-07-27, 22:36)drinfernoo Wrote:
(2019-07-27, 03:18)jurialmunkey Wrote: It's a no to this request. AZ is a mostly monochrome skin. Color accents are used sparingly.

Would you be willing to accept a PR that added it in a friendly way?
No. It's part of the skin identity. Otherwise it just ends up turning into Aura. Plus there are already way too many options, which just make development more of a chore to manage.

I'm trying to avoid making a kitchen sink or a Swiss army knife and it's already become a bit like that.

AZ has always been a simple minimalist mostly monochrome skin with options to disable parts of the ui that the user feels are unnecessary (and thus make the skin even more minimalist). Basically, I like options that reduce on-screen complexity, not ones that add to it.


RE: Arctic: Zephyr 2 - jurialmunkey - 2019-07-27

(2019-07-27, 21:13)titidel Wrote: Hi Jurialmunkey,
I saw in the textures, an HDR icon. But I do not see it in the flags of the movies. How to make it appear on HDR files?
Hdr needs to be in filename. Kodi is unable to recognise hdr and atmos codecs due to a limitation in ffmpeg, which is used for decoding.


RE: Arctic: Zephyr 2 - Tecnosatspa - 2019-07-28

hello juarialmonkey greetings, I wanted to see if it is possible to make a modification to the skin so that when it is installed automatically this active configured

Home layout: Vertical menu / Multiple widgets
Colors: Dark whit dark dialogs

I am putting together a fork apk for personal use greetings


RE: Arctic: Zephyr 2 - NotYourAverageAl - 2019-07-28

@jurialmunkey a couple of questions - is it possible turn off fanart in the movie titles but not in the home section, when using the basic lay out etc? the fanart is jarring when browsing titles. Blur is an option but I find the rpi slow when it turned on. hope i'm making sense.

And I cant seem to turn off submenu widget. i have tried to set submenu hub widget & submenu hub widget-aspect to none but its not working. Am i missing something.
Image


RE: Arctic: Zephyr 2 - titidel - 2019-07-28

(2019-07-27, 23:39)jurialmunkey Wrote:
(2019-07-27, 21:13)titidel Wrote: Hi Jurialmunkey,
I saw in the textures, an HDR icon. But I do not see it in the flags of the movies. How to make it appear on HDR files?
Hdr needs to be in filename. Kodi is unable to recognise hdr and atmos codecs due to a limitation in ffmpeg, which is used for decoding. 

Thank you for your answer. I did the test following the instructions here:
https://kodi.wiki/view/Naming_video_files/Movies#Media_Tags_.2F_Flags
But that does not work...


RE: Arctic: Zephyr 2 - curael - 2019-07-28

(2019-07-28, 06:03)NotYourAverageAl Wrote: a couple of questions - is it possible turn off fanart in the movie titles but not in the home section, when using the basic lay out etc? the fanart is jarring when browsing titles. Blur is an option but I find the rpi slow when it turned on. hope i'm making sense.
Fanart seems to be linked to the show you're highlighting, whether you're in the home screen or browsing a library. The only solution to this is to disable the "Fanart" option in the Skin Settings -> Background, and then go into your Home Menu settings and add the playlist at hand as "background" - This way the Home Menu will cycle through your playlists fanart as a background, how ever it will not be linked to the movie or show you're marking, since the fanart has been disabled globally. So it will not be a coherent experience.

(2019-07-28, 06:03)NotYourAverageAl Wrote: And I cant seem to turn off submenu widget. i have tried to set submenu hub widget & submenu hub widget-aspect to none but its not working. Am i missing something.
Are you trying to disable the top row and not the one called "Spotlight"? It's important to note that the widget is NOT the top row of blocks, that is your actual "sub menu" as if you disabled the hub function in the Home Menu options. Then the blocks would just show up as text strings instead of blocks.
The spotlight section in your image, however, is under "Home Menu" -> "Enable global widget". The global widget is shown in any Home Menu sub menu hub, and is the same everywhere because of what playlist you set it to display. Try disabling that.


RE: Arctic: Zephyr 2 - jurialmunkey - 2019-07-28

(2019-07-28, 11:22)titidel Wrote:
(2019-07-27, 23:39)jurialmunkey Wrote:
(2019-07-27, 21:13)titidel Wrote: Hi Jurialmunkey,
I saw in the textures, an HDR icon. But I do not see it in the flags of the movies. How to make it appear on HDR files?
Hdr needs to be in filename. Kodi is unable to recognise hdr and atmos codecs due to a limitation in ffmpeg, which is used for decoding. 

Thank you for your answer. I did the test following the instructions here:
https://kodi.wiki/view/Naming_video_files/Movies#Media_Tags_.2F_Flags
But that does not work...

Sorry, for some reason I was thinking of DTS-X, not HDR.
Should be fixed now.


RE: Arctic: Zephyr 2 - 7Eleven - 2019-07-28

Hey @jurialmunky,

Is it possible to make the labels on the small square and small landscape widget optional?

I feel like it takes away from the minimalism.

Thanks for your time.