Kodi Community Forum

Full Version: Information about the size of the movie
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,
please request:
I'd like to add information about the size of the movie to Estuary or another skin (in Libreelec on Raspberry).
So there was another extra white box. And, eventually, it was the size of each movie - in the line view.
See photo please.
https://i.ibb.co/C7KF4NS/Velikost.png

Is it possible to do this at home, or is it just a job for an experienced developer?

I found only this:
ListItem.Size
https://kodi.wiki/view/InfoLabels
which seems to me that it could, but I don't know where to put it.

thanks a lot
Pavel

Image
for things like this it is in Includes.xml
<include name="MediaFlag">
<include content="InfoFlag">
                    <param name="label" value="$INFO[ListItem.Size]" />
                    </include>
but size just gets 00000000b

Image
Maybe this is just one of several necessary steps. Maybe there must be another change to xml - that it will be added from where to get that size?
Thanks
Try to ask the forum https://www.xbmc-kodi.cz/. Find theme Skiny > Estuary Easy. This topic is about the Estuary skin customizing. I am no longer active there, but there are others who will certainly advise you.
why this will not work there is no file size stored in the database

<control type="label">
                        <left>19</left>
                                      <top>150</top>
                        
                        <font>font12</font>
                        <label>$INFO[Container.FolderPath][CR]$INFO[ListItem.FileNameAndPath],$INFO[ListItem.size][CR]$INFO[ListItem.size]</label>
                        <textcolor>grey</textcolor>
                        <shadowcolor>text_shadow</shadowcolor>
                    </control>

you would need to work out how to [ListItem.FileNameAndPath] and [ListItem.size] from there
ImageImage
Thank you for your feedback and suggestions.