Kodi Community Forum
v18 Set up kodi to show movies and tv show in one screen - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111)
+---- Forum: Windows (https://forum.kodi.tv/forumdisplay.php?fid=59)
+---- Thread: v18 Set up kodi to show movies and tv show in one screen (/showthread.php?tid=348569)



Set up kodi to show movies and tv show in one screen - 123321 - 2019-10-20

How to do this? To movies automatically show on home screen?


RE: Set up kodi to show movies and tv show in one screen - DarrenHill - 2019-10-20

Basically you can't. They are intentionally kept seperate by necessity from metadata scraping.

But you can have the sections side by side on the main menu, and depending on the skin used also with widgets and other on-screen displays of items like newly added, in progress and suchlike.


RE: Set up kodi to show movies and tv show in one screen - the_other_guy - 2019-10-20

not easy but with a bit of modding
monie widget
xml:
<include content="WidgetListPoster" condition="Library.HasContent(movies)">
                            <param name="content_path" value="videodb://movies/"/>
                            <param name="widget_header" value="$LOCALIZE[31010]"/>
                            <param name="widget_target" value="videos"/>
                            <param name="list_id" value="5100"/>
                        </include>
xml:

<include content="WidgetListPoster" condition="Library.HasContent(tvshows)">
                            <param name="content_path" value="videodb://tvshows/"/>
                            <param name="sortby" value="lastplayed"/>
                            <param name="sortorder" value="descending"/>
                            <param name="widget_header" value="$LOCALIZE[626]"/>
                            <param name="widget_target" value="videos"/>
                            <param name="list_id" value="5150"/>
                        </include>
Includes_Home.xml  target="$PARAM[widget_target]" limit="15"  limit="1000"

anoyherway is to use nodes  abd tv in Category
Image


RE: Set up kodi to show movies and tv show in one screen - 123321 - 2019-10-31

Thanks, i have still things to learn but when i know it can happen i am ready to read everything i need.