Kodi Community Forum

Full Version: Information in Sets
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hello, sorry if this doesent belong here
just wanted to ask if there is any way to change the information on movie sets to just show release date and nothing else


example
Imagehttps://imgur.com/a/dBkpiIB

thanks!
(2020-03-29, 06:36)PantherZalayeta Wrote: [ -> ]any way to change the information on movie sets to just show release date and nothing else
Do you mean the actual set, or the movies contained in the set? Just the release date- so you don't want the movie or set title? A bit strange just looking at a date.

Which skin are you using?
(2020-03-29, 07:01)Karellen Wrote: [ -> ]
(2020-03-29, 06:36)PantherZalayeta Wrote: [ -> ]any way to change the information on movie sets to just show release date and nothing else
Do you mean the actual set, or the movies contained in the set? Just the release date- so you don't want the movie or set title? A bit strange just looking at a date.

Which skin are you using? 
https://imgur.com/a/dBkpiIB i wrote what i want below the images, so instead of showing "The harry potter films...." i would like them to show like the lego ones  2001 - Sorcerer Stone  2002 - Chambers of Secrets, etc

im using the default skin
I must be a bit slow today. Instead of giving me a tightly cropped screenshot where all I see are some words. Give me a screenshot of the WHOLE screen so I can see how you want it all placed. Those words can be coming from 8 different views, so I have no idea where you are.

Make sure the screenshot shows what you want, overlaid on what is actually there.

But, having said that, if you have scrolled through all the available views and have not found one that suits you, then no, there is no view to do what you want. You will have to find an alternative skin or edit the skin files.

Also, to upload images...
If the image is on your computer, use button 19.
If the image has already been uploaded to a public image hosting site, right click the image and select Copy image location then use button 14 and paste the link
Image
(2020-03-29, 07:42)Karellen Wrote: [ -> ] 
sorry haha im the slow one, i tried everything i could and there is no way to make the left side a list of the movies that the set contains so i think i will need a skin 
ImageImage
Ok, now that is better and understand.

If you want a listing in the left panel instead of the movie set plot, you have two choice..
1. Delete the Movie Set Overview as shown in the Wizarding World image. IIRC the plot is the primary display and the movie listing is the fallback when no plot exists
2. That should be a fairly easy item to change in the skins xml file, unfortunately I have no idea Wink, but I have this vague impression that @jjd-uk did something similar once.

-edit-
Actually I think it was @DaVu that did something with movie set listings
Sorry, can't remember it was me changing anything in regard of sets.

I just remember that NFOs from previous Kodi version might look different

In older NFO files you have <set>name_of_set</set>

In actual NFO files you should use:

<set>
  <name>name_of_set</name>
  <overview>Here is the plot</overview>
</set>

The old method still works (in meaning movies are still grouped in sets), but it's not compatible with newer version of Kodi and if you want to use the "overview" option. I also can't remember what the rule was, to make this overview visible. IIRC the overview-tag has to be in the nfo-file from the first movie which belongs to that set. But I'm using the same "<set>"-section for every movie in a collection. So I can't do anything wrong in that regard Wink
(2020-03-29, 19:40)DaVu Wrote: [ -> ]Sorry, can't remember it was me changing anything in regard of sets.
Here... https://github.com/xbmc/xbmc/pull/14909

I think the OP is asking how to display only the movie list in the left panel, and never display the overview. I thought you might know as you worked on that section previously. Nothing to do with nfo files.
Ah, that one, sorry. A bit too long ago (was merged for Kodi 18 RC1 Wink )

Well, the explanation at the PR explains it. We currently get the one or the other, but we are not able to choose what we want to see.

If there's an overview preset, we will see the overview. If there's no overview present we will see the list of movies with the matching release date.

Unfortunately there's some incompatibility for libraries which are very old (like mine, which started on XBMC 11) where there never has been an option for an overview. Let's assume the following: 

I scraped the movies "Bad Boys" and "Bad Boys 2" back in the time (Bad Boys 2 is from 2003). At that time there's was no database option for an "overview". So, if I have exported my movies back in that time and I had the NFO files, thse "set"-section" will look like:
Code:
<set>Bad Boys Collection</set>

So "Bad Boys" and "Bad Boys 2" are both belonging to the set and as "Bad Boys" will be the first movie in that set, it doesn't have anything mentioned like "overview". It's simply not present, because at that time we didn't have an option for that. 

Now, 17 years later, I scrape the movie "Bad Boys for Life" and if I export that movie, the set-section will look like: 
Code:
<set>
  <name>Bad Boys Collection</name>
  <overview>2 Films about the cop duo nick named 'Bad Boys', blowing stuff up and crazy car chases. They get the job done but at an expensive cost.</overview>
</set>

So, now we have that overview, but only for one of those movies and as that is not the first one for that set, we will never see the overview as that has to be present for the first movie which was added to the set, which is not the case if you don't change your NFO files or re-scrape the existing movies. The 3rd movie will still be added to the set (as the "old" set-section is still compatible with the new one), but the overview will not have any effect. So you have to change all your NFO files or rescrape all your existing movies to get the overview. 

I have to admit that this is done fast for the mentioned set. But now think of movies from the "James Bond Collection" Wink

That's where it might get confusing for the OP, as he might also have sets which display only the overview or other sets where he has the list of movies being shown. 

Maybe we can hack some setting in Kodi to be able to let the user decide what he wants to see (will be Kodi 19 only as Kodi 18 will not get new features). But that wouldn't solve the problem for libraries which do exist for years.

Edit:
And it might also be the case, that we don't show the overview if there's nothing for an overview present on the scraping-site. Not sure if there's any case which might match. But if we don't scrape an overview for a movie, because the information provider (TMBD) doesn't have that info, we will still show the list.
So, if the op wants to change something for his own, he should simply remove that section:

https://github.com/xbmc/xbmc/blob/master...ml#L46-L54

Edit this line: https://github.com/xbmc/xbmc/blob/master...av.xml#L70
to: <visible>ListItem.IsCollection</visible>

Then remove this section:
https://github.com/xbmc/xbmc/blob/master...#L107-L116

and change that line: https://github.com/xbmc/xbmc/blob/master...er.xml#L83
to the same I mentioned above.
(2020-03-30, 08:01)DaVu Wrote: [ -> ]So, if the op wants to change something for his own, he should simply remove that section:

https://github.com/xbmc/xbmc/blob/master...ml#L46-L54

Edit this line: https://github.com/xbmc/xbmc/blob/master...av.xml#L70
to: <visible>ListItem.IsCollection</visible>

Then remove this section:
https://github.com/xbmc/xbmc/blob/master...#L107-L116

and change that line: https://github.com/xbmc/xbmc/blob/master...er.xml#L83
to the same I mentioned above.
Image
@Karellen  thank you!! and thank you too @DaVu for the long detailed answer
you are welcome, but @DaVu did most of the work Smile

Looking at your Wizarding World entry, this might be of interest to you... https://kodi.wiki/view/HOW-TO:Movie_universe
(2020-03-31, 05:08)Karellen Wrote: [ -> ]you are welcome, but @DaVu did most of the work Smile

Looking at your Wizarding World entry, this might be of interest to you... https://kodi.wiki/view/HOW-TO:Movie_universe

cool! you can do almost anything in kodi haha, will look into it, thanks